#[repr(C)]pub struct PebLdrData {
pub length: u32,
pub initialized: u8,
pub ss_handle: NativePtr,
pub in_load_order_module_list: ListEntry,
pub in_memory_order_module_list: ListEntry,
pub in_initialization_order_module_list: ListEntry,
pub entry_in_progress: NativePtr,
pub shutdown_in_progress: u8,
pub shutdown_thread_id: NativePtr,
}Expand description
PEB_LDR_DATA - contains the module lists
Fields§
§length: u32§initialized: u8§ss_handle: NativePtr§in_load_order_module_list: ListEntry§in_memory_order_module_list: ListEntry§in_initialization_order_module_list: ListEntry§entry_in_progress: NativePtr§shutdown_in_progress: u8§shutdown_thread_id: NativePtrAuto Trait Implementations§
impl Freeze for PebLdrData
impl RefUnwindSafe for PebLdrData
impl !Send for PebLdrData
impl !Sync for PebLdrData
impl Unpin 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