#[unsafe(no_mangle)]pub unsafe extern "C" fn mun_runtime_update(
runtime: Runtime,
updated: *mut bool,
) -> ErrorHandleExpand description
Updates the runtime corresponding to handle. If successful, updated is set, otherwise a
non-zero error handle is returned.
If a non-zero error handle is returned, it must be manually destructed using
[mun_error_destroy].
ยงSafety
This function receives raw pointers as parameters. If any of the arguments is a null pointer, an error will be returned. Passing pointers to invalid data, will lead to undefined behavior.