mirror of
https://github.com/italicsjenga/agb.git
synced 2025-01-10 09:01:34 +11:00
12 lines
239 B
Rust
12 lines
239 B
Rust
#[allow(non_upper_case_globals)]
|
|
#[allow(non_camel_case_types)]
|
|
#[allow(non_snake_case)]
|
|
mod ffi {
|
|
include!(concat!(env!("OUT_DIR"), "/bindings.rs"));
|
|
}
|
|
|
|
pub use ffi::*;
|
|
|
|
unsafe impl Sync for mLogger {}
|
|
unsafe impl Send for mLogger {}
|