From 4d1d2f86ef8cee23ce6d6341c86a51793ef29600 Mon Sep 17 00:00:00 2001 From: ironhead Date: Mon, 27 Dec 2010 19:59:54 +0000 Subject: [PATCH] 2010-12-27 Seth Jackson * include/basetsd.h: (INT8, UINT8, INT16, UINT16): Define. --- winsup/w32api/ChangeLog | 4 ++++ winsup/w32api/include/basetsd.h | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/winsup/w32api/ChangeLog b/winsup/w32api/ChangeLog index b0b87cc503..05ae45afe0 100644 --- a/winsup/w32api/ChangeLog +++ b/winsup/w32api/ChangeLog @@ -1,3 +1,7 @@ +2010-12-27 Seth Jackson + + * include/basetsd.h: (INT8, UINT8, INT16, UINT16): Define. + 2010-12-27 Paul Sokolovsky * include/bdatypes.h: Add missing semicolons. diff --git a/winsup/w32api/include/basetsd.h b/winsup/w32api/include/basetsd.h index d9c375dd9a..91d9da7480 100644 --- a/winsup/w32api/include/basetsd.h +++ b/winsup/w32api/include/basetsd.h @@ -47,10 +47,14 @@ #ifdef __cplusplus extern "C" { #endif +typedef signed char INT8; +typedef signed short INT16; typedef int LONG32, *PLONG32; #ifndef XFree86Server typedef int INT32, *PINT32; #endif /* ndef XFree86Server */ +typedef unsigned char UINT8; +typedef unsigned short UINT16; typedef unsigned int ULONG32, *PULONG32; typedef unsigned int DWORD32, *PDWORD32; typedef unsigned int UINT32, *PUINT32; -- 2.11.0