Add in wchar to our set of bases for x64 systems.

This commit is contained in:
Mike Auty
2016-12-04 01:02:17 +00:00
parent e27a444068
commit e1cc55aeed
+2 -1
View File
@@ -83,7 +83,8 @@ native_types = {'int': (objects.Integer, '<i'),
'long long': (objects.Integer, '<q'),
'unsigned long long': (objects.Integer, '<Q'),
'float': (objects.Float, "<d"),
'double': (objects.Float, "<d")}
'double': (objects.Float, "<d"),
'wchar': (objects.Integer, '<H')}
x86NativeTable = NativeTable("native", native_types)
native_types['pointer'] = (objects.Pointer, '<Q')
x64NativeTable = NativeTable("native", native_types)