#[repr(C)]pub struct PebLdrData {
pub _length_and_init: [u8; 8],
pub _ss_handle: *mut c_void,
pub in_load_order_module_list: ListEntry,
}Expand description
PEB_LDR_DATA prefix.
phnt / NtDoc: ULONG Length, BOOLEAN Initialized, HANDLE SsHandle, LIST_ENTRY InLoadOrderModuleList. On x64 that list head is at 0x10.
Fields§
§_length_and_init: [u8; 8]§_ss_handle: *mut c_void§in_load_order_module_list: ListEntryAuto Trait Implementations§
impl !Send for PebLdrData
impl !Sync for PebLdrData
impl Freeze for PebLdrData
impl RefUnwindSafe for PebLdrData
impl Unpin for PebLdrData
impl UnsafeUnpin for PebLdrData
impl UnwindSafe for PebLdrData
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more