summaryrefslogtreecommitdiffstats
path: root/third_party/rust/cubeb-pulse/src/lib.rs
blob: 42ec20c077d322f10bfa46c235e04ca8011aa407 (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 ringbuf;
extern crate semver;

mod backend;
mod capi;

pub use capi::pulse_rust_init;