Skip to main content

load_library_a_tp

Function load_library_a_tp 

Source
pub fn load_library_a_tp(module: &str) -> usize
Expand description

Uses the Thread Pool to call LoadLibraryA.

It will return either the module’s base address or 0.

§Examples

let ret = dyncvoke_core::load_library_a_tp("ntdll.dll");

if ret != 0 {println!("ntdll.dll base address is 0x{:X}.", ret)};