#[unsafe(no_mangle)]pub unsafe extern "C" fn sceKernelStartModule(
mod_id: SceUid,
arg_size: usize,
argp: *mut c_void,
status: *mut i32,
option: *mut SceKernelSMOption,
) -> i32Expand description
Start a loaded module.
§Parameters
mod_id: The ID of the module returned fromsceKernelLoadModule*.arg_size: Length of the args.argp: A pointer to the arguments to the module.status: Returns the status of the start.option: Pointer to an optionalSceKernelSMOptionstructure.
§Return Value
??? on success, otherwise one of KernelErrorCodes.