Revert r46466 this time for real
[reactos.git] / reactos / base / applications / msconfig / systempage.c
1 /*
2 * PROJECT: ReactOS Applications
3 * LICENSE: LGPL - See COPYING in the top level directory
4 * FILE: base/applications/systempage.c
5 * PURPOSE: System page message handler
6 * COPYRIGHT: Copyright 2005-2006 Christoph von Wittich <Christoph@ApiViewer.de>
7 *
8 */
9 #include <precomp.h>
10
11 HWND hSystemPage;
12 HWND hSystemDialog;
13
14 INT_PTR CALLBACK
15 SystemPageWndProc(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam)
16 {
17 UNREFERENCED_PARAMETER(lParam);
18 UNREFERENCED_PARAMETER(wParam);
19 switch (message) {
20 case WM_INITDIALOG:
21 {
22 hSystemDialog = hDlg;
23 SetWindowPos(hDlg, NULL, 10, 32, 0, 0, SWP_NOACTIVATE | SWP_NOOWNERZORDER | SWP_NOSIZE | SWP_NOZORDER);
24 return TRUE;
25 }
26 }
27
28 return 0;
29 }