From: Jack Jansen Date: Sat, 9 Dec 1995 14:02:54 +0000 (+0000) Subject: Added Sint8 and Uint8 types X-Git-Tag: v1.4b1~451 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=1e4ce733fcb00b9f694b9b41ce9e4cd5622607ca;p=thirdparty%2FPython%2Fcpython.git Added Sint8 and Uint8 types --- diff --git a/Tools/bgen/bgen/macsupport.py b/Tools/bgen/bgen/macsupport.py index fb6547238309..c3788b29d4b6 100644 --- a/Tools/bgen/bgen/macsupport.py +++ b/Tools/bgen/bgen/macsupport.py @@ -16,6 +16,8 @@ ScriptCode = Type("ScriptCode", "h") Size = Type("Size", "l") Style = Type("Style", "b") +UInt8 = Type("UInt8", "b") +SInt8 = Type("SInt8", "b") UInt16 = Type("UInt16", "h") SInt16 = Type("SInt16", "h") UInt32 = Type("UInt32", "l")