ReactOS 0.4.15-dev-7953-g1f49173
panelwnd.h File Reference
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Functions

LRESULT CALLBACK PanelWndProc (HWND, UINT, WPARAM, LPARAM)
 

Function Documentation

◆ PanelWndProc()

LRESULT CALLBACK PanelWndProc ( HWND  hWnd,
UINT  message,
WPARAM  wParam,
LPARAM  lParam 
)

Definition at line 82 of file panelwnd.c.

83{
84// Pane* pane;
85// ChildWnd* pChildWnd = (ChildWnd*)GetWindowLongPtr(hWnd, GWLP_USERDATA);
86// ChildWnd* new_child;
87// ASSERT(pChildWnd);
88
89 if (1) {
90 switch(message) {
91 case WM_CREATE:
92 break;
93 case WM_PAINT:
94 OnPaint(hWnd, 0/*pChildWnd*/);
95 break;
96/*
97 case WM_COMMAND:
98 pane = GetFocus()==pChildWnd->left.hWnd? &pChildWnd->left: &pChildWnd->right;
99 switch(LOWORD(wParam)) {
100 case ID_WINDOW_NEW_WINDOW:
101 break;
102 default:
103 return pane_command(pane, LOWORD(wParam));
104 }
105 break;
106 */
107 default:
109 }
110 }
111 return 0;
112}
HWND hWnd
Definition: settings.c:17
WPARAM wParam
Definition: combotst.c:138
LPARAM lParam
Definition: combotst.c:139
static void OnPaint(HWND hWnd, ChildWnd *pChildWnd)
Definition: panelwnd.c:45
#define DefWindowProc
Definition: ros2win.h:31
Definition: tftpd.h:60
#define WM_PAINT
Definition: winuser.h:1620
#define WM_CREATE
Definition: winuser.h:1608