Function psp::sys::sceRegGetKeyInfo

source ·
#[no_mangle]
pub unsafe extern "C" fn sceRegGetKeyInfo(
    dir_handle: RegistryHandle,
    name: *const u8,
    key_handle: *mut RegistryHandle,
    type_: *mut KeyType,
    size: *mut usize
) -> i32
Expand description

Get a key’s information

§Parameters

  • dir_handle: The open registry dir handle
  • name: Name of the key
  • key_handle: Pointer to a Handle to get registry key handle (used in sceRegGetKeyValue)
  • type_: Type of the key
  • size: The size of the key’s value in bytes

§Return Value

0 on success, < 0 on error