aboutsummaryrefslogtreecommitdiff
path: root/ctru-sys/src/services/ns.rs
blob: c48e1761ba03e5378547280e5537d615ed678167 (plain) (blame)
1
2
3
4
5
6
7
8
9
use ::Result;

extern "C" {
    pub fn nsInit() -> Result;
    pub fn nsExit();
    pub fn NS_LaunchTitle(titleid: u64, launch_flags: u32, procid: *mut u32) -> Result;
    pub fn NS_RebootToTitle(mediatype: u8, titleid: u64) -> Result;
}