pub type xed_segment_base_callback_fn_t = Option<unsafe extern "C" fn(reg: xed_reg_enum_t, context: *mut c_void, error: *mut xed_bool_t) -> u64>;
Expand description

A function for obtaining the segment base values. 32b return values should be zero extended zero extended to 64b. The error value is set to nonzero if the callback experiences some sort of problem. @ingroup AGEN

Aliased Type§

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

Variants§

§1.0.0

None

No value.

§1.0.0

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

Some value of type T.