rust/physfs-rs/src/lib.rs
author Wuzzy <Wuzzy2@mail.ru>
Mon, 22 Jul 2019 10:04:19 +0200
changeset 15263 1ce9b717bb41
parent 14440 a1613788130d
permissions -rw-r--r--
Fix word "Feedback" not being translated in error message This does not violate the string freeze, the string is already present in PageMain.

//! PhysFS bindings for Rust

#![deny(missing_docs)]

extern crate libc;

pub use physfs::*;
pub use physfs::file::*;

/// PhysFS bindings
mod physfs;
/// Definitions for the PhysFS primitives
mod primitives;