1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
#![feature(untagged_unions)]
#![feature(extern_types)]
#![allow(non_camel_case_types)]
#![allow(non_snake_case)]
#![allow(dead_code)]
#![no_std]

pub mod dialog;
pub mod display;
pub mod graphics;
pub mod io;
pub mod kernel;
pub mod system_param;
pub mod types;

/// A placeholder enum for functions with `*void` arguments.
///
/// Only manipulate behind pointers !
pub enum void {}