We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Struct
This can currently not be ported:
def _RTL_PROCESS_MODULE_INFORMATION(arch: Architecture): class _RTL_PROCESS_MODULE_INFORMATION(ctypes.Structure): _alignment_ = arch.alignment() _fields_ = [ ("Section", arch.ptr_type()), ("MappedBase", arch.ptr_type()), ("ImageBase", arch.ptr_type()), ("ImageSize", ctypes.c_uint32), ("Flags", ctypes.c_uint32), ("LoadOrderIndex", ctypes.c_uint16), ("InitOrderIndex", ctypes.c_uint16), ("LoadCount", ctypes.c_uint16), ("OffsetToFileName", ctypes.c_uint16), ("FullPathName", ctypes.c_ubyte * 256), ] return _RTL_PROCESS_MODULE_INFORMATION()
The text was updated successfully, but these errors were encountered:
No branches or pull requests
This can currently not be ported:
The text was updated successfully, but these errors were encountered: