2d551e36bfc0174d34e32b8f9a6227cddc3f1060
[reactos.git] / reactos / dll / cpl / input / inputlangprop.c
1 /*
2 *
3 * PROJECT: input.dll
4 * FILE: dll/win32/input/inputlangprop.c
5 * PURPOSE: input.dll
6 * PROGRAMMER: Dmitry Chapyshev (lentind@yandex.ru)
7 * Colin Finck
8 * UPDATE HISTORY:
9 * 06-09-2007 Created
10 */
11
12 #include "resource.h"
13 #include "input.h"
14
15 INT_PTR CALLBACK
16 InputLangPropDlgProc(HWND hDlg,
17 UINT message,
18 WPARAM wParam,
19 LPARAM lParam)
20 {
21 UNREFERENCED_PARAMETER(lParam);
22
23 switch (message)
24 {
25 case WM_INITDIALOG:
26 CreateKeyboardLayoutList();
27 break;
28
29 case WM_COMMAND:
30 switch (LOWORD(wParam))
31 {
32 case IDOK:
33 break;
34
35 case IDCANCEL:
36 EndDialog(hDlg,LOWORD(wParam));
37 break;
38 }
39 break;
40 }
41
42 return FALSE;
43 }
44
45 /* EOF */