- Move global variables into a struct that is attached to the property sheet page...
[reactos.git] / reactos / dll / cpl / desk / appearance.c
1 /* $Id$
2 *
3 * COPYRIGHT: See COPYING in the top level directory
4 * PROJECT: ReactOS Display Control Panel
5 * FILE: lib/cpl/desk/appearance.c
6 * PURPOSE: Appearance property page
7 *
8 * PROGRAMMERS: Trevor McCort (lycan359@gmail.com)
9 */
10
11 #include "desk.h"
12
13 INT_PTR CALLBACK
14 AppearancePageProc(HWND hwndDlg,
15 UINT uMsg,
16 WPARAM wParam,
17 LPARAM lParam)
18 {
19 UNREFERENCED_PARAMETER(lParam);
20 UNREFERENCED_PARAMETER(wParam);
21 UNREFERENCED_PARAMETER(hwndDlg);
22
23 switch (uMsg)
24 {
25 case WM_INITDIALOG:
26 break;
27
28 case WM_COMMAND:
29 break;
30 }
31
32 return FALSE;
33 }
34