Return a four byte string representing the double word value (little endian).
(self, dword)
| 6785 | ## |
| 6786 | |
| 6787 | def get_data_from_dword(self, dword): |
| 6788 | """Return a four byte string representing the double word value (little endian).""" |
| 6789 | return struct.pack("<L", dword & 0xFFFFFFFF) |
| 6790 | |
| 6791 | def get_dword_from_data(self, data, offset): |
| 6792 | """Convert four bytes of data to a double word (little endian) |
no test coverage detected