1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#[allow(unused_imports)]
use self::super::root;
#[repr(C)]
pub struct InternalCriticalSection {
    pub Image: u32,
}

#[repr(C)]
pub struct InternalConditionVariable {
    pub Image: u32,
}

extern "C" {
    #[link_name = "\u{1}_ZN2nn2os6detail22g_CommandLineParameterE"]
    pub static mut g_CommandLineParameter: root::s32;
}
extern "C" {
    #[link_name = "\u{1}_ZN2nn2os6detail26g_CommandLineParameterArgvE"]
    pub static mut g_CommandLineParameterArgv: *mut *mut u8;
}