mirror of
https://github.com/morgan9e/FreeRDP
synced 2026-04-14 08:24:16 +09:00
[locale,keyboard] use int64_t to avoid sign warnings
This commit is contained in:
@@ -60,14 +60,14 @@ struct LanguageIdentifier
|
||||
|
||||
typedef struct
|
||||
{
|
||||
DWORD code; /* Keyboard layout code */
|
||||
INT64 code; /* Keyboard layout code */
|
||||
DWORD id; /* Keyboard variant ID */
|
||||
char* name; /* Keyboard layout variant name */
|
||||
} RDP_KEYBOARD_LAYOUT_VARIANT;
|
||||
|
||||
typedef struct
|
||||
{
|
||||
DWORD code; /* Keyboard layout code */
|
||||
INT64 code; /* Keyboard layout code */
|
||||
char* file; /* IME file */
|
||||
char* name; /* Keyboard layout name */
|
||||
} RDP_KEYBOARD_IME;
|
||||
|
||||
Reference in New Issue
Block a user