retrovnc/crates/retro_frontend/src/lib.rs
modeco80 a7544cb64d code cleanup
- make joypad a directory module, split retropad implementation into new module (but re-export it). also rename joypad to InputDevice

- remove spurious retro_reset (it's not needed and in fact crashes some cores)

- rename frontend input device APIs, add one for removing (unplugging) a device
2024-08-04 20:26:30 -04:00

13 lines
224 B
Rust

//! A libretro frontend as a reusable library crate.
mod libretro_callbacks;
mod libretro_core_variable;
mod libretro_log;
pub mod libretro_sys_new;
pub mod input_devices;
pub mod util;
pub mod frontend;
pub mod result;