| 7 | |
| 8 | constexpr auto SystemModuleInformation = 11; |
| 9 | typedef struct _RTL_PROCESS_MODULE_INFORMATION |
| 10 | { |
| 11 | HANDLE Section; |
| 12 | PVOID MappedBase; |
| 13 | PVOID ImageBase; |
| 14 | ULONG ImageSize; |
| 15 | ULONG Flags; |
| 16 | USHORT LoadOrderIndex; |
| 17 | USHORT InitOrderIndex; |
| 18 | USHORT LoadCount; |
| 19 | USHORT OffsetToFileName; |
| 20 | UCHAR FullPathName[256]; |
| 21 | } RTL_PROCESS_MODULE_INFORMATION, * PRTL_PROCESS_MODULE_INFORMATION; |
| 22 | |
| 23 | typedef struct _RTL_PROCESS_MODULES |
| 24 | { |
nothing calls this directly
no outgoing calls
no test coverage detected