imported patch CFBase-IntegerTypes.patch

This commit is contained in:
Sven Weidauer 2010-03-29 21:48:07 +02:00
parent 83db570c72
commit c9c4d1b99f

View File

@ -91,9 +91,14 @@ typedef double Float64;
typedef unsigned CFUInteger;
typedef int CFInteger;
typedef int8_t SInt8;
typedef uint8_t UInt8;
typedef int16_t SInt16;
typedef uint16_t UInt16;
typedef int32_t SInt32;
typedef uint32_t UInt32;
typedef signed char SInt8;
typedef int64_t SInt64;
typedef uint64_t UInt64;
typedef const void *CFTypeRef;
typedef CFUInteger CFTypeID;
@ -102,6 +107,12 @@ typedef char Boolean;
typedef CFInteger CFIndex;
typedef CFUInteger CFOptionFlags;
typedef SInt32 OSStatus;
typedef SInt16 OSErr;
typedef UInt32 FourCharCode;
typedef FourCharCode OSType;
typedef struct {
CFIndex location;
CFIndex length;