Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions memorpy/Locator.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,9 @@ def feed(self, value, erase_last = True):
all_types = ['uint',
'int',
'long',
'longlong',
'ulong',
'ulonglong',
'float',
'double',
'short',
Expand Down
6 changes: 6 additions & 0 deletions memorpy/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,12 @@ def type_unpack(type):
elif type == 'ulong':
s = 'L'
l = 4
elif type == 'longlong':
s = 'q'
l = 8
elif type == 'ulonglong':
s = 'Q'
l = 8
elif type == 'float':
s = 'f'
l = 4
Expand Down