mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-07 17:36:00 +00:00
15 lines
275 B
C
15 lines
275 B
C
#pragma once
|
|
|
|
#ifdef USE_CHAR16_T
|
|
#define lpuch(x) u ## x
|
|
typedef char16_t KMX_UCHAR;
|
|
#else
|
|
#define lpuch(x) L ## x
|
|
typedef wchar_t KMX_UCHAR;
|
|
#endif
|
|
|
|
typedef KMX_UCHAR* KMX_PUCHAR;
|
|
|
|
extern const KMX_UCHAR* VKeyNames[256];
|
|
extern const KMX_UCHAR* VKeyISO9995Names[256];
|
|
|