fixed some bugs
[reactos.git] / reactos / subsys / system / msconfig / generalpage.c
1 #include <precomp.h>
2
3 HWND hGeneralPage;
4 HWND hGeneralDialog;
5
6 INT_PTR CALLBACK
7 GeneralPageWndProc(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam)
8 {
9 switch (message) {
10 case WM_INITDIALOG:
11 hGeneralDialog = hDlg;
12 SetWindowPos(hDlg, NULL, 10, 32, 0, 0, SWP_NOACTIVATE | SWP_NOOWNERZORDER | SWP_NOSIZE | SWP_NOZORDER);
13 return TRUE;
14 }
15
16 return 0;
17 }