aboutsummaryrefslogtreecommitdiff
path: root/ctru-sys/src/ipc.rs
blob: 390022df58a7f7f3c70e9a44bb581854a547ded9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
//TODO: Implement static inline functions + solve the anonymous enum enigma

#[derive(Clone, Copy)]
#[repr(C)]
pub enum IPC_BufferRights {
    IPC_BUFFER_R = 2,
    IPC_BUFFER_W = 4,
    IPC_BUFFER_RW = 6,
}