| 73 | |
| 74 | #[repr(C)] |
| 75 | pub struct LoaderDataTableEntry { |
| 76 | pub in_load_order_links: ListEntry, |
| 77 | pub in_memory_order_links: ListEntry, |
| 78 | pub in_initialization_order_links: ListEntry, |
| 79 | pub dll_base: *mut c_void, |
| 80 | pub entry_point: *mut c_void, |
| 81 | pub size_of_image: c_ulong, |
| 82 | pub full_dll_name: UnicodeString, |
| 83 | pub base_dll_name: UnicodeString, |
| 84 | pub flags: c_ulong, |
| 85 | pub load_count: i16, |
| 86 | pub tls_index: i16, |
| 87 | pub hash_links_or_section_pointer: HashLinksOrSectionPointer, |
| 88 | pub time_date_stamp_or_loaded_imports: TimeDateStampOrLoadedImports, |
| 89 | pub entry_point_activation_context: *mut c_void, |
| 90 | pub patch_information: *mut c_void, |
| 91 | pub forwarder_links: ListEntry, |
| 92 | pub service_tag_links: ListEntry, |
| 93 | pub static_links: ListEntry, |
| 94 | } |
| 95 | |
| 96 | #[repr(C)] |
| 97 | pub struct PebLoaderData { |
nothing calls this directly
no outgoing calls
no test coverage detected