Skip to main content

LdrDataTableEntry

Struct LdrDataTableEntry 

Source
#[repr(C)]
pub struct LdrDataTableEntry { pub in_load_order_links: ListEntry, pub in_memory_order_links: ListEntry, pub in_initialization_order_links: ListEntry, pub dll_base: *mut c_void, pub entry_point: *mut c_void, pub size_of_image: u32, pub full_dll_name: UnicodeString, pub base_dll_name: UnicodeString, }
Expand description

LDR_DATA_TABLE_ENTRY prefix used by the load-order walk.

x64 offsets (Geoff Chappell, LDR_DATA_TABLE_ENTRY): 0x00 InLoadOrderLinks, 0x10 InMemoryOrderLinks, 0x20 InInitializationOrderLinks, 0x30 DllBase, 0x38 EntryPoint, 0x40 SizeOfImage, 0x48 FullDllName, 0x58 BaseDllName.

Fields§

§in_load_order_links: ListEntry§in_memory_order_links: ListEntry§in_initialization_order_links: ListEntry§dll_base: *mut c_void§entry_point: *mut c_void§size_of_image: u32§full_dll_name: UnicodeString§base_dll_name: UnicodeString

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = !

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, !>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.