aboutsummaryrefslogtreecommitdiff
path: root/src/raw/services/soc.rs
blob: d2df270cbcc2b780c8537d61942979a1abef2ad3 (plain) (blame)
1
2
3
4
5
6
7
use ::Result;

#[link(name = "ctru")]
extern "C" {
    pub fn SOC_Initialize(context_addr: *mut u32, context_size: u32) -> Result;
    pub fn SOC_Shutdown() -> Result;
}