rust/physfs-rs/src/lib.rs
author raptor <buckyballreaction@gmail.com>
Tue, 13 Aug 2019 09:50:24 -0600
changeset 15315 272dc9967fd3
parent 14440 a1613788130d
permissions -rw-r--r--
Make hardware acceleration optional on MacOS X

//! 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;