13.08.2014, 17:28
Before i bother pissing around attempting to get this to work without any understanding of it will or not, mainly so i don't waste my time.
I'd like to use other keys located on the UK & US keyboard formats such as A,B,C,F,S,T and so on Using the VK Codes that Microsoft provides..
I'd like to use other keys located on the UK & US keyboard formats such as A,B,C,F,S,T and so on Using the VK Codes that Microsoft provides..
pawn Код:
#define KEY_KEY_A 0x41
#define KEY_KEY_B 0x42
#define KEY_KEY_C 0x43
#define KEY_KEY_D 0x44
#define KEY_KEY_E 0x45
#define KEY_KEY_F 0x46
#define KEY_KEY_G 0x47
#define KEY_KEY_H 0x48
#define KEY_KEY_I 0x49
#define KEY_KEY_J 0x4A
#define KEY_KEY_K 0x4B
#define KEY_KEY_L 0x4C
#define KEY_KEY_M 0x4D
#define KEY_KEY_N 0x4E
#define KEY_KEY_O 0x4F
#define KEY_KEY_P 0x50
#define KEY_KEY_Q 0x51
#define KEY_KEY_R 0x52
#define KEY_KEY_S 0x53
#define KEY_KEY_T 0x54
#define KEY_KEY_U 0x55
#define KEY_KEY_V 0x56
#define KEY_KEY_W 0x57
#define KEY_KEY_X 0x58
#define KEY_KEY_Y 0x59
#define KEY_KEY_Z 0x5A
#define KEY_LBUTTON 0x01
#define KEY_MBUTTON 0x04
#define KEY_RBUTTON 0x02
#define KEY_UP 0x26
#define KEY_DOWN 0x28
#define KEY_LEFT 0x25
#define KEY_RIGHT 0x27
#define KEY_LSHIFT 0xA0
#define KEY_RSHIFT 0xA1
#define KEY_SPACE 0x20