Big merge: thanks alex and greatlord. Not a complete merge but most
[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 AppearancePageProc(HWND hwndDlg,
14 UINT uMsg,
15 WPARAM wParam,
16 LPARAM lParam)
17 {
18 UNREFERENCED_PARAMETER(lParam)
19 UNREFERENCED_PARAMETER(wParam)
20 UNREFERENCED_PARAMETER(hwndDlg)
21
22 switch(uMsg)
23 {
24 case WM_INITDIALOG:
25 {
26 } break;
27
28 case WM_COMMAND:
29 {
30 } break;
31 }
32
33 return FALSE;
34 }
35