summaryrefslogtreecommitdiffstats
path: root/third_party/rust/cubeb-pulse/src/lib.rs
blob: 434e357e960300288bc5665998b6492b158980b7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Cubeb backend interface to Pulse Audio

// 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 cubeb_backend;
extern crate pulse;
extern crate pulse_ffi;
extern crate semver;
extern crate ringbuf;

mod capi;
mod backend;

pub use capi::pulse_rust_init;