Thomas Weidenmueller is not author of this control panel applet. From svn log I found...
[reactos.git] / reactos / dll / cpl / access / keyboard.c
1 /* $Id$
2 *
3 * PROJECT: ReactOS System Control Panel
4 * LICENSE: GPL - See COPYING in the top level directory
5 * FILE: lib/cpl/system/advanced.c
6 * PURPOSE: Memory, start-up and profiles settings
7 * COPYRIGHT: Copyright 2004 Johannes Anderwald (j_anderw@sbox.tugraz.at)
8 * UPDATE HISTORY:
9 * 03-04-2004 Created
10 */
11 #include <windows.h>
12 #include <stdlib.h>
13 #include "resource.h"
14 #include "access.h"
15
16 /* Property page dialog callback */
17 INT_PTR CALLBACK
18 KeyboardPageProc(
19 HWND hwndDlg,
20 UINT uMsg,
21 WPARAM wParam,
22 LPARAM lParam
23 )
24 {
25 switch(uMsg)
26 {
27 case WM_INITDIALOG:
28 break;
29 case WM_COMMAND:
30 {
31 switch(LOWORD(wParam))
32 {
33 case IDC_STICKY_BOX:
34 {
35 break;
36 }
37
38 case IDC_STICKY_BUTTON:
39 {
40 break;
41 }
42
43 case IDC_FILTER_BOX:
44 {
45 break;
46 }
47
48 case IDC_FILTER_BUTTON:
49 {
50 break;
51 }
52
53 case IDC_TOGGLE_BOX:
54 {
55 break;
56 }
57
58 case IDC_TOGGLE_BUTTON:
59 {
60 break;
61 }
62 default:
63 break;
64 }
65 }
66 }
67 return FALSE;
68 }