openmpt/
lib.rs

1//! Safe rust bindings for libopenmpt, built on top of the C API.
2//!
3//! See openmpt_sys for the unsafe bindings.
4
5extern crate openmpt_sys;
6
7#[macro_use] mod string_helper;
8pub mod info;
9pub mod mod_command;
10pub mod module;