ca0d76134135875e2bafe0545bf61553d015fe5f
[reactos.git] / reactos / lib / 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 <windows.h>
12 #include <commctrl.h>
13
14 #include "resource.h"
15
16 INT_PTR CALLBACK AppearancePageProc(HWND hwndDlg,
17 UINT uMsg,
18 WPARAM wParam,
19 LPARAM lParam)
20 {
21 switch(uMsg)
22 {
23 case WM_INITDIALOG:
24 {
25 } break;
26
27 case WM_COMMAND:
28 {
29 } break;
30 }
31
32 return FALSE;
33 }
34