ferretro/ferretro_base/src/lib.rs

12 lines
435 B
Rust

extern crate libloading;
pub mod retro;
pub mod prelude {
//! Re-exports for types likely to be used by consumers of the crate.
pub use crate::retro::constants::*;
pub use crate::retro::wrapped_types::*;
pub use crate::retro::wrapper::{RetroCallbacks, LibretroWrapper, LibretroWrapperAccess};
pub use crate::retro::ffi::{PixelFormat, GameGeometry, HwContextResetFn, HwRenderCallback, SystemAvInfo, SystemInfo};
}