allegro_acodec_sys/lib.rs
1// Copyright (c) 2014 by SiegeLord
2//
3// All rights reserved. Distributed under ZLib. For full terms see the file LICENSE.
4
5pub use self::allegro_acodec::*;
6
7pub mod allegro_acodec
8{
9 use allegro_util::c_bool;
10
11 unsafe extern "C" {
12 pub fn al_init_acodec_addon() -> c_bool;
13 pub fn al_get_allegro_acodec_version() -> u32;
14 }
15}