cubeb-core 0.35.3

Common types and definitions for cubeb rust and C bindings. Not intended for direct use.
Documentation
// Copyright © 2017-2018 Mozilla Foundation
//
// This program is made available under an ISC-style license.  See the
// accompanying file LICENSE for details.

#[macro_use]
extern crate bitflags;
extern crate cubeb_sys;

#[macro_use]
mod ffi_types;

mod call;

mod builders;
mod channel;
mod context;
mod device;
mod device_collection;
mod error;
mod format;
mod log;
mod stream;
mod util;

pub use crate::builders::*;
pub use crate::channel::*;
pub use crate::context::*;
pub use crate::device::*;
pub use crate::device_collection::*;
pub use crate::error::*;
pub use crate::format::*;
pub use crate::log::*;
pub use crate::stream::*;

pub mod ffi {
    pub use cubeb_sys::*;
}