Source position: jwanative.pas line 2736
type _LDR_DATA_TABLE_ENTRY = record |
case Integer of |
0: ( |
InLoadOrderLinks: LIST_ENTRY; |
); |
1: ( |
InMemoryOrderLinks: LIST_ENTRY; |
); |
2: ( |
InInitializationOrderLinks: LIST_ENTRY; |
DllBase: PVOID; |
EntryPoint: PVOID; |
SizeOfImage: ULONG; |
FullDllName: UNICODE_STRING; |
BaseDllName: UNICODE_STRING; |
Flags: ULONG; |
LoadCount: USHORT; |
TlsIndex: USHORT; |
HashLinks: LIST_ENTRY; |
SectionPointer: PVOID; |
CheckSum: ULONG; |
TimeDateStamp: ULONG; |
LoadedImports: PVOID; |
EntryPointActivationContext: PVOID; |
PatchInformation: PVOID; |
); |
end; |