summaryrefslogtreecommitdiffstats
path: root/third_party/rust/cubeb-coreaudio/src/lib.rs
blob: 87efbf54d6e33518d351cb23254997d59eb28d88 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Copyright © 2018 Mozilla Foundation
//
// This program is made available under an ISC-style license.  See the
// accompanying file LICENSE for details.

extern crate atomic;
#[macro_use]
extern crate bitflags;
#[macro_use]
extern crate cubeb_backend;
#[macro_use]
extern crate float_cmp;
#[macro_use]
extern crate lazy_static;
extern crate mach;

mod backend;
mod capi;

pub use crate::capi::audiounit_rust_init;