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


extern "C" {
    pub fn SOC_Initialize(context_addr: *mut u32, context_size: u32) -> Result;
    pub fn SOC_Shutdown() -> Result;
}