psp 0.3.12

A library for building full PSP modules, including both PRX plugins and regular homebrew apps.
Documentation
/// Sony Integrated Remote Control System Library.
///
/// This module contains the imports for the kernel's remote control routines.

#[repr(C)]
#[derive(Debug, Copy, Clone)]
pub struct SircsData {
    pub type_: u8,
    pub cmd: u8,
    pub dev: u16,
}

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

    #[psp(0x71EEF62D)]
    pub fn sceSircsSend(sd: *mut SircsData, count: i32) -> i32;
}