Sync with trunk (r48545)
[reactos.git] / base / applications / kbswitch / kbswitch.h
1 #include <stdio.h>
2 #include <stdlib.h>
3 #include <windows.h>
4 #include <winuser.h>
5 #include <tchar.h>
6
7 #include "resource.h"
8
9 // Character Count of a layout ID like "00000409"
10 #define CCH_LAYOUT_ID 8
11
12 // Maximum Character Count of a ULONG in decimal
13 #define CCH_ULONG_DEC 10
14
15 #define WM_KEY_PRESSED (WM_USER + 10100)
16 #define WM_LANG_CHANGED (WM_USER + 10200)
17 #define WM_WINDOW_ACTIVATE (WM_USER + 10300)
18 #define WM_LOAD_LAYOUT (WM_USER + 10400)
19
20 TCHAR szKbSwitcherName[] = _T("kbswitcher");