nnsdk 0.6.2

Cleanroom reverse-engineered bindings for nnsdk (Nintendo Switch SDK)
Documentation
1
2
3
4
5
6
7
8
9
extern "C" {
    #[link_name = "\u{1}_ZN2nn7account6detail13IsInitializedEv"]
    pub fn IsInitialized() -> bool;
}

pub fn is_initialized() -> bool {
    let result = unsafe { IsInitialized() };
    return result;
}