summaryrefslogtreecommitdiffstats
path: root/third_party/rust/cubeb-coreaudio/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/rust/cubeb-coreaudio/src/lib.rs')
-rw-r--r--third_party/rust/cubeb-coreaudio/src/lib.rs20
1 files changed, 20 insertions, 0 deletions
diff --git a/third_party/rust/cubeb-coreaudio/src/lib.rs b/third_party/rust/cubeb-coreaudio/src/lib.rs
new file mode 100644
index 0000000000..87efbf54d6
--- /dev/null
+++ b/third_party/rust/cubeb-coreaudio/src/lib.rs
@@ -0,0 +1,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;