mirror of https://github.com/FreeRDP/FreeRDP
Fixed cast warnings due to defines
This commit is contained in:
parent
03e454d7d0
commit
0feee85952
|
@ -27,14 +27,14 @@
|
|||
* Key Flags
|
||||
*/
|
||||
|
||||
#define KBDEXT (USHORT)0x0100
|
||||
#define KBDMULTIVK (USHORT)0x0200
|
||||
#define KBDSPECIAL (USHORT)0x0400
|
||||
#define KBDNUMPAD (USHORT)0x0800
|
||||
#define KBDUNICODE (USHORT)0x1000
|
||||
#define KBDINJECTEDVK (USHORT)0x2000
|
||||
#define KBDMAPPEDVK (USHORT)0x4000
|
||||
#define KBDBREAK (USHORT)0x8000
|
||||
#define KBDEXT 0x0100u
|
||||
#define KBDMULTIVK 0x0200u
|
||||
#define KBDSPECIAL 0x0400u
|
||||
#define KBDNUMPAD 0x0800u
|
||||
#define KBDUNICODE 0x1000u
|
||||
#define KBDINJECTEDVK 0x2000u
|
||||
#define KBDMAPPEDVK 0x4000u
|
||||
#define KBDBREAK 0x8000u
|
||||
|
||||
/*
|
||||
* Virtual Key Codes (Windows):
|
||||
|
|
Loading…
Reference in New Issue