]> gitweb.factorcode.org Git - factor.git/commitdiff
add full complement of [SU]Int[0-9]+ typedefs to core-foundation
authorJoe Groff <arcata@gmail.com>
Sun, 13 Sep 2009 00:43:57 +0000 (19:43 -0500)
committerJoe Groff <arcata@gmail.com>
Sun, 13 Sep 2009 00:43:57 +0000 (19:43 -0500)
basis/core-foundation/core-foundation.factor

index 63bfaf37cecb4d3865e813c2e7457901a0cf7d6d..2ef388563e06990f2ae00bb89978260d00c18b59 100644 (file)
@@ -8,11 +8,16 @@ TYPEDEF: void* CFTypeRef
 TYPEDEF: void* CFAllocatorRef
 CONSTANT: kCFAllocatorDefault f
 
-TYPEDEF: bool Boolean
-TYPEDEF: long CFIndex
-TYPEDEF: char UInt8
-TYPEDEF: int SInt32
-TYPEDEF: uint UInt32
+TYPEDEF: bool      Boolean
+TYPEDEF: long      CFIndex
+TYPEDEF: uchar     UInt8
+TYPEDEF: ushort    UInt16
+TYPEDEF: uint      UInt32
+TYPEDEF: ulonglong UInt64
+TYPEDEF: char      SInt8
+TYPEDEF: short     SInt16
+TYPEDEF: int       SInt32
+TYPEDEF: longlong  SInt64
 TYPEDEF: ulong CFTypeID
 TYPEDEF: UInt32 CFOptionFlags
 TYPEDEF: void* CFUUIDRef
@@ -32,3 +37,4 @@ FUNCTION: CFTypeRef CFRetain ( CFTypeRef cf ) ;
 FUNCTION: void CFRelease ( CFTypeRef cf ) ;
 
 DESTRUCTOR: CFRelease
+