Type Alias windows::Wdk::System::SystemServices::pKdEnumerateDebuggingDevices
pub type pKdEnumerateDebuggingDevices = Option<unsafe extern "system" fn(loaderblock: *const c_void, device: *mut DEBUG_DEVICE_DESCRIPTOR, callback: PDEBUG_DEVICE_FOUND_FUNCTION) -> NTSTATUS>;
Aliased Type§
enum pKdEnumerateDebuggingDevices {
None,
Some(unsafe extern "system" fn(_: *const c_void, _: *mut DEBUG_DEVICE_DESCRIPTOR, _: Option<unsafe extern "system" fn(_: *mut DEBUG_DEVICE_DESCRIPTOR) -> KD_CALLBACK_ACTION>) -> NTSTATUS),
}
Variants§
None
No value.
Some(unsafe extern "system" fn(_: *const c_void, _: *mut DEBUG_DEVICE_DESCRIPTOR, _: Option<unsafe extern "system" fn(_: *mut DEBUG_DEVICE_DESCRIPTOR) -> KD_CALLBACK_ACTION>) -> NTSTATUS)
Some value of type T
.