Function load_library_a
Source pub fn load_library_a(module: &str) -> usize
Expand description
Dynamically calls LoadLibraryA.
It will return either the module’s base address or 0.
§Examples
ⓘlet ret = dyncvoke_core::load_library_a("ntdll.dll");
if ret != 0 {println!("ntdll.dll base address is 0x{:X}.", ret)};