2010-12-27 Seth Jackson <sethj@users.sourceforge.net>

* include/basetsd.h: (INT8, UINT8, INT16, UINT16): Define.
This commit is contained in:
Chris Sutcliffe 2010-12-27 19:59:54 +00:00
parent 39e8c3f232
commit 83304a3ecc
2 changed files with 8 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2010-12-27 Seth Jackson <sethj@users.sourceforge.net>
* include/basetsd.h: (INT8, UINT8, INT16, UINT16): Define.
2010-12-27 Paul Sokolovsky <pfalcon@users.sf.net>
* include/bdatypes.h: Add missing semicolons.

View File

@ -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;