Author: hpoussin
Date: Mon Nov 5 15:03:15 2007
New Revision: 30168
URL:
http://svn.reactos.org/svn/reactos?rev=30168&view=rev
Log:
Add PSHORT and PUSHORT types
Modified:
trunk/reactos/include/host/typedefs.h
Modified: trunk/reactos/include/host/typedefs.h
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/include/host/typedefs.h?re…
==============================================================================
--- trunk/reactos/include/host/typedefs.h (original)
+++ trunk/reactos/include/host/typedefs.h Mon Nov 5 15:03:15 2007
@@ -59,8 +59,8 @@
typedef char CHAR, *PCHAR, *PSTR;
typedef const char CCHAR;
typedef const char *PCSTR, *LPCSTR;
-typedef short SHORT;
-typedef unsigned short USHORT;
+typedef short SHORT, *PSHORT;
+typedef unsigned short USHORT, *PUSHORT;
typedef unsigned short WORD, *PWORD, *LPWORD;
typedef int LONG, *PLONG, *LPLONG;
typedef unsigned int ULONG, *PULONG, DWORD, *LPDWORD;