| ... | @@ -4803,14 +4803,14 @@ pub const PEB_LDR_DATA = extern struct { | ... | @@ -4803,14 +4803,14 @@ pub const PEB_LDR_DATA = extern struct { |
| 4803 | /// - https://docs.microsoft.com/en-us/windows/win32/api/winternl/ns-winternl-peb_ldr_data | 4803 | /// - https://docs.microsoft.com/en-us/windows/win32/api/winternl/ns-winternl-peb_ldr_data |
| 4804 | /// - https://www.geoffchappell.com/studies/windows/km/ntoskrnl/inc/api/ntldr/ldr_data_table_entry.htm | 4804 | /// - https://www.geoffchappell.com/studies/windows/km/ntoskrnl/inc/api/ntldr/ldr_data_table_entry.htm |
| 4805 | pub const LDR_DATA_TABLE_ENTRY = extern struct { | 4805 | pub const LDR_DATA_TABLE_ENTRY = extern struct { |
| 4806 | Reserved1: [2]PVOID, | 4806 | InLoadOrderLinks: LIST_ENTRY, |
| 4807 | InMemoryOrderLinks: LIST_ENTRY, | 4807 | InMemoryOrderLinks: LIST_ENTRY, |
| 4808 | Reserved2: [2]PVOID, | 4808 | InInitializationOrderLinks: LIST_ENTRY, |
| 4809 | DllBase: PVOID, | 4809 | DllBase: PVOID, |
| 4810 | EntryPoint: PVOID, | 4810 | EntryPoint: PVOID, |
| 4811 | SizeOfImage: ULONG, | 4811 | SizeOfImage: ULONG, |
| 4812 | FullDllName: UNICODE_STRING, | 4812 | FullDllName: UNICODE_STRING, |
| 4813 | Reserved4: [8]BYTE, | 4813 | BaseDllName: UNICODE_STRING, |
| 4814 | Reserved5: [3]PVOID, | 4814 | Reserved5: [3]PVOID, |
| 4815 | DUMMYUNIONNAME: extern union { | 4815 | DUMMYUNIONNAME: extern union { |
| 4816 | CheckSum: ULONG, | 4816 | CheckSum: ULONG, |