From db2e11b33a186e472cf6cab4cfd3459da6af645a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Herv=C3=A9=20Poussineau?= Date: Mon, 5 Nov 2007 12:03:15 +0000 Subject: [PATCH] Add PSHORT and PUSHORT types svn path=/trunk/; revision=30168 --- reactos/include/host/typedefs.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reactos/include/host/typedefs.h b/reactos/include/host/typedefs.h index 9e0b28280dd..7a103f7e549 100644 --- a/reactos/include/host/typedefs.h +++ b/reactos/include/host/typedefs.h @@ -59,8 +59,8 @@ typedef unsigned char UCHAR, *PUCHAR, BYTE, *LPBYTE; 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;