move some files into base/applications
[reactos.git] / reactos / base / applications / msconfig / systempage.c
1 #include <precomp.h>
2
3 HWND hSystemPage;
4 HWND hSystemDialog;
5
6 INT_PTR CALLBACK
7 SystemPageWndProc(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam)
8 {
9 switch (message) {
10 case WM_INITDIALOG:
11 hSystemDialog = 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 }