pub type OrthancPluginApplyMove = Option<unsafe extern "C" fn(moveDriver: *mut c_void) -> OrthancPluginErrorCode>;
Expand description
@brief Callback to apply one C-Move suboperation.
Signature of a callback function that applies the next C-Move suboperation that os to be achieved by the given C-Move driver. This driver is the return value of a previous call to the OrthancPluginMoveCallback() callback.
@param moveDriver The C-Move driver of interest. @return 0 if success, or the error code if failure. @ingroup DicomCallbacks
Aliased Type§
pub enum OrthancPluginApplyMove {
None,
Some(unsafe extern "C" fn(*mut c_void) -> i32),
}