Rust wrapper for libctru
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

33 lines
620 B

/*
* C bindings generation:
* bindgen --match=file.h --use-core --ctypes-prefix=libc -- --sysroot=$DEVKITARM/arm-none-eabi -I$CTRULIB/include $CTRULIB/include/3ds.h
*
*/
#![no_std]
#![allow(non_camel_case_types, non_snake_case, overflowing_literals)]
8 years ago
#![feature(untagged_unions)]
8 years ago
extern crate ctr_libc as libc;
pub mod applets;
pub mod console;
pub mod env;
pub mod gfx;
pub mod gpu;
pub mod ipc;
8 years ago
pub mod ndsp;
pub mod os;
8 years ago
pub mod romfs;
pub mod sdmc;
pub mod services;
pub mod svc;
pub mod srv;
pub mod sys;
pub mod synchronization;
pub mod thread;
pub mod types;
pub use self::sys::*;
pub use self::types::*;