move more dlls
[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 switch(uMsg)
19 {
20 case WM_INITDIALOG:
21 {
22 } break;
23
24 case WM_COMMAND:
25 {
26 } break;
27 }
28
29 return FALSE;
30 }
31