#[unsafe(no_mangle)]pub unsafe extern "C" fn plugin_call(
handle: *mut c_void,
type_tag: *const c_char,
request: *const u8,
request_len: usize,
) -> FfiBufferExpand description
Make a synchronous call to the plugin
§Parameters
handle: Plugin handle from plugin_inittype_tag: Message type identifier (null-terminated C string)request: Request payload bytesrequest_len: Length of request payload
§Returns
FfiBuffer containing the response (must be freed with plugin_free_buffer)
§Safety
handlemust be a valid handle from plugin_inittype_tagmust be a valid null-terminated C stringrequestmust be valid forrequest_lenbytes