pub unsafe extern "C" fn qemu_plugin_reset(
id: u64,
cb: Option<unsafe extern "C" fn(u64)>,
)
Expand description
qemu_plugin_reset() - Reset a plugin @id: this plugin’s opaque ID @cb: callback to be called once the plugin has been reset
Unregisters all callbacks for the plugin given by @id.
Do NOT assume that the plugin has been reset once this function returns. Plugins are reset asynchronously, and therefore the given plugin receives callbacks until @cb is called.