#[unsafe(no_mangle)]pub unsafe extern "C" fn plugin_call_async(
_handle: *mut c_void,
_type_tag: *const c_char,
_request: *const u8,
_request_len: usize,
_callback: extern "C" fn(context: *mut c_void, request_id: u64, data: *const u8, len: usize, error_code: u32),
_context: *mut c_void,
) -> u64Expand description
Make an async call to the plugin (placeholder for future implementation)
§Safety
handlemust be a valid handle fromplugin_init, or nulltype_tagmust be a valid null-terminated C string, or nullrequestmust be valid forrequest_lenbytes, or null ifrequest_lenis 0callbackwill be invoked when the request completescontextis passed through to the callback
§Returns
Request ID that can be used with plugin_cancel_async, or 0 if not implemented