MCPcopy Create free account
hub / github.com/b1tg/rust-windows-shellcode / LDR_DATA_TABLE_ENTRY

Class LDR_DATA_TABLE_ENTRY

shellcode/src/binds.rs:34–44  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

32pub type PLDR_DATA_TABLE_ENTRY = *const LDR_DATA_TABLE_ENTRY;
33#[repr(C)]
34pub struct LDR_DATA_TABLE_ENTRY {
35 pub InLoadOrderModuleList: LIST_ENTRY,
36 pub InMemoryOrderModuleList: LIST_ENTRY,
37 pub InInitializationOrderModuleList: LIST_ENTRY,
38 pub BaseAddress: PVOID,
39 pub EntryPoint: PVOID,
40 pub SizeOfImage: ULONG,
41 pub FullDllName: UNICODE_STRING,
42 pub BaseDllName: UNICODE_STRING,
43 // ...
44}
45
46pub type USHORT = u16;
47pub type PWCH = *mut u16;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected