aboutsummaryrefslogtreecommitdiff
path: root/src/raw/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/raw/mod.rs')
-rw-r--r--src/raw/mod.rs25
1 files changed, 0 insertions, 25 deletions
diff --git a/src/raw/mod.rs b/src/raw/mod.rs
deleted file mode 100644
index f4947a7..0000000
--- a/src/raw/mod.rs
+++ /dev/null
@@ -1,25 +0,0 @@
-#![allow(non_camel_case_types)]
-#![allow(non_snake_case)]
-#![allow(overflowing_literals)]
-#![allow(raw_pointer_derive)]
-
-pub mod console;
-pub mod gfx;
-pub mod linear;
-pub mod os;
-pub mod sdmc;
-pub mod srv;
-pub mod svc;
-pub mod types;
-
-pub mod services;
-
-pub use self::types::*;
-
-#[repr(u8)]
-pub enum c_void {
- __variant1,
- __variant2
-}
-
-pub type ThreadFunc = Option<extern "C" fn(arg1: *mut c_void) -> ()>;