From a5affc63c9080d2c8b16ad5edd6141b3d28327c0 Mon Sep 17 00:00:00 2001 From: Matthew Cline Date: Sat, 12 Feb 2000 19:25:38 +0000 Subject: [PATCH] Added typedefs for PSHORT and PUSHORT. --- include/windef.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/windef.h b/include/windef.h index 970cf33e62f..6a5c9db634e 100644 --- a/include/windef.h +++ b/include/windef.h @@ -198,6 +198,8 @@ typedef CHAR *PCHAR; typedef UCHAR *PUCHAR; typedef BYTE *PBYTE; typedef WORD *PWORD; +typedef USHORT *PUSHORT; +typedef SHORT *PSHORT; typedef ULONG *PULONG; typedef LONG *PLONG; typedef DWORD *PDWORD;