[][src]Function vmread_sys::GetProcAddress

pub unsafe extern "C" fn GetProcAddress(
    ctx: *const WinCtx,
    process: *const WinProc,
    module: u64,
    procName: *const c_char
) -> u64

@brief Get the address of a module export

@param ctx vmread context @param process target process @param module base address of the module @param procName target export name

This function generates an export list and immediately frees it, so it is advised against using it extensively. See GetProcAddress.

@return Virtual address of the export, 0, if not found