mirror of
https://github.com/volatilityfoundation/volatility3.git
synced 2026-08-31 04:09:40 +02:00
Add in wchar to our set of bases for x64 systems.
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user