Type Alias OUT_OF_PROCESS_FUNCTION_TABLE_CALLBACK

Source
pub type OUT_OF_PROCESS_FUNCTION_TABLE_CALLBACK = Option<unsafe extern "C" fn(Process: HANDLE, TableAddress: PVOID, Entries: PDWORD, Functions: *mut PRUNTIME_FUNCTION) -> DWORD>;

Aliased Type§

enum OUT_OF_PROCESS_FUNCTION_TABLE_CALLBACK {
    None,
    Some(unsafe extern "C" fn(_: *mut c_void, _: *mut c_void, _: *mut u32, _: *mut *mut _IMAGE_RUNTIME_FUNCTION_ENTRY) -> u32),
}

Variants§

§1.0.0

None

No value.

§1.0.0

Some(unsafe extern "C" fn(_: *mut c_void, _: *mut c_void, _: *mut u32, _: *mut *mut _IMAGE_RUNTIME_FUNCTION_ENTRY) -> u32)

Some value of type T.