1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
#![feature(core)] #![feature(no_std)] #![no_std] #![crate_type = "rlib"] #![crate_name = "ctru"] extern crate core; pub mod raw; pub type Result = i32; pub type Handle = u32; pub mod srv; pub mod gfx; pub mod services;