Kaydet (Commit) e3889da0 authored tarafından Jack Jansen's avatar Jack Jansen

Make a distinction between shorts and unsigned shorts.

üst 56cdce30
......@@ -137,6 +137,7 @@ class OutputOnlyType(OutputOnlyMixIn, Type):
void = None
char = Type("char", "c")
short = Type("short", "h")
unsigned_short = Type("unsigned short", "H")
int = Type("int", "i")
long = Type("long", "l")
unsigned_long = Type("unsigned long", "l")
......
......@@ -21,7 +21,7 @@ TextEncoding = Type("TextEncoding", "l")
UInt8 = Type("UInt8", "b")
SInt8 = Type("SInt8", "b")
UInt16 = Type("UInt16", "h")
UInt16 = Type("UInt16", "H")
SInt16 = Type("SInt16", "h")
UInt32 = Type("UInt32", "l")
SInt32 = Type("SInt32", "l")
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment