aboutsummaryrefslogtreecommitdiff
path: root/src/raw/services/ac.rs
blob: 0b07ec6bc747eb83adb8a40dac69dec4c1930a57 (plain) (blame)
1
2
3
4
5
6
7
8
9
use ::{Handle, Result};


extern "C" {
    pub fn acInit() -> Result;
    pub fn acExit() -> Result;
    pub fn ACU_GetWifiStatus(servhandle: *mut Handle, out: *mut u32) -> Result;
    pub fn ACU_WaitInternetConnection() -> Result;
}