Add PSHORT and PUSHORT types

svn path=/trunk/; revision=30168
This commit is contained in:
Hervé Poussineau 2007-11-05 12:03:15 +00:00
parent e9616e5788
commit db2e11b33a

View file

@ -59,8 +59,8 @@ typedef unsigned char UCHAR, *PUCHAR, BYTE, *LPBYTE;
typedef char CHAR, *PCHAR, *PSTR; typedef char CHAR, *PCHAR, *PSTR;
typedef const char CCHAR; typedef const char CCHAR;
typedef const char *PCSTR, *LPCSTR; typedef const char *PCSTR, *LPCSTR;
typedef short SHORT; typedef short SHORT, *PSHORT;
typedef unsigned short USHORT; typedef unsigned short USHORT, *PUSHORT;
typedef unsigned short WORD, *PWORD, *LPWORD; typedef unsigned short WORD, *PWORD, *LPWORD;
typedef int LONG, *PLONG, *LPLONG; typedef int LONG, *PLONG, *LPLONG;
typedef unsigned int ULONG, *PULONG, DWORD, *LPDWORD; typedef unsigned int ULONG, *PULONG, DWORD, *LPDWORD;