Changeset 67360 in vbox for trunk/include/iprt/nt
- Timestamp:
- Jun 13, 2017 12:47:29 PM (8 years ago)
- svn:sync-xref-src-repo-rev:
- 116080
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/nt/nt.h
r67359 r67360 2264 2264 typedef struct _RTL_PROCESS_MODULE_INFORMATION 2265 2265 { 2266 HANDLE Section; 2267 PVOID MappedBase; 2268 PVOID ImageBase; 2269 ULONG ImageSize; 2270 ULONG Flags; 2271 USHORT LoadOrderIndex; 2272 USHORT InitOrderIndex; 2273 USHORT LoadCount; 2274 USHORT OffsetToFileName; 2275 UCHAR FullPathName[256]; 2266 HANDLE Section; /**< 0x00 / 0x00 */ 2267 PVOID MappedBase; /**< 0x04 / 0x08 */ 2268 PVOID ImageBase; /**< 0x08 / 0x10 */ 2269 ULONG ImageSize; /**< 0x0c / 0x18 */ 2270 ULONG Flags; /**< 0x10 / 0x1c */ 2271 USHORT LoadOrderIndex; /**< 0x14 / 0x20 */ 2272 USHORT InitOrderIndex; /**< 0x16 / 0x22 */ 2273 USHORT LoadCount; /**< 0x18 / 0x24 */ 2274 USHORT OffsetToFileName; /**< 0x1a / 0x26 */ 2275 UCHAR FullPathName[256]; /**< 0x1c / 0x28 */ 2276 2276 } RTL_PROCESS_MODULE_INFORMATION; 2277 2277 typedef RTL_PROCESS_MODULE_INFORMATION *PRTL_PROCESS_MODULE_INFORMATION; … … 2281 2281 { 2282 2282 ULONG NumberOfModules; 2283 RTL_PROCESS_MODULE_INFORMATION Modules[1]; 2283 RTL_PROCESS_MODULE_INFORMATION Modules[1]; /**< 0x04 / 0x08 */ 2284 2284 } RTL_PROCESS_MODULES; 2285 2285 typedef RTL_PROCESS_MODULES *PRTL_PROCESS_MODULES;
Note:
See TracChangeset
for help on using the changeset viewer.