psp 0.3.12

A library for building full PSP modules, including both PRX plugins and regular homebrew apps.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#[repr(C)]
#[derive(Debug, Copy, Clone)]
pub struct OpenPSID {
    pub data: [u8; 16usize],
}

psp_extern! {
    #![name = "sceOpenPSID"]
    #![flags = 0x4001]
    #![version = (0x00, 0x11)]

    #[psp(0xC69BEBCE)]
    pub fn sceOpenPSIDGetOpenPSID(openpsid: *mut OpenPSID) -> i32;
}