Mercurial > ms-int-types
changeset 9:62d255c0ba50
All (U)INT* types changed to (unsigned) __int*. This should make stdint.h compatible with VC6.
author | ipse.c99@d525d15b-5824-0410-80a3-6185d19c2cde |
---|---|
date | Wed, 13 Dec 2006 13:39:33 +0000 |
parents | 8528f97c3731 |
children | fed29a68d73f |
files | stdint.h |
diffstat | 1 files changed, 8 insertions(+), 8 deletions(-) [+] |
line wrap: on
line diff
--- a/stdint.h +++ b/stdint.h @@ -47,14 +47,14 @@ // 7.18.1 Integer types // 7.18.1.1 Exact-width integer types -typedef INT8 int8_t; -typedef INT16 int16_t; -typedef INT32 int32_t; // There is LONG32 type defined the same. Should it be used here? -typedef INT64 int64_t; // There is LONG64 type defined the same. Should it be used here? -typedef UINT8 uint8_t; -typedef UINT16 uint16_t; -typedef UINT32 uint32_t; // There are ULONG32 and DWORD32 type defined the same. Should one of them be used here? -typedef UINT64 uint64_t; // There are ULONG64 and DWORD64 type defined the same. Should one of them be used here? +typedef __int8 int8_t; +typedef __int16 int16_t; +typedef __int32 int32_t; +typedef __int64 int64_t; +typedef unsigned __int8 uint8_t; +typedef unsigned __int16 uint16_t; +typedef unsigned __int32 uint32_t; +typedef unsigned __int64 uint64_t; // 7.18.1.2 Minimum-width integer types typedef int8_t int_least8_t;