sceKernelStartModule

Function sceKernelStartModule 

Source
#[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, ) -> i32
Expand description

Start a loaded module.

§Parameters

  • mod_id: The ID of the module returned from sceKernelLoadModule*.
  • 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 optional SceKernelSMOption structure.

§Return Value

??? on success, otherwise one of KernelErrorCodes.