libpulse_sys/
lib.rs

1// Copyright 2017 Lyndon Brown
2//
3// This file is part of the PulseAudio Rust language linking library.
4//
5// Licensed under the MIT license or the Apache license (version 2.0), at your option. You may not
6// copy, modify, or distribute this file except in compliance with said license. You can find copies
7// of these licenses either in the LICENSE-MIT and LICENSE-APACHE files, or alternatively at
8// <http://opensource.org/licenses/MIT> and <http://www.apache.org/licenses/LICENSE-2.0>
9// respectively.
10//
11// Portions of documentation are copied from the LGPL 2.1+ licensed PulseAudio C headers on a
12// fair-use basis, as discussed in the overall project readme (available in the git repository).
13
14//! PulseAudio FFI bindings for the main `libpulse` system library.
15//!
16//! This crate does nothing more than offer a simple FFI binding to the C API of the [PulseAudio]
17//! client system library. Please note that there is a “higher-level” binding available (the
18//! [`libpulse-binding`] crate), built on top of this, which offers a more Rust-oriented interface.
19//!
20//! Unlike the “higher-level” binding just mentioned, virtually no documentation is provided here.
21//! Things that *are* documented here are typically only those directly re-exported by the
22//! “higher-level” binding. Please see either the equivalent documentation in that, or the
23//! documentation of the actual PulseAudio C header files, if you need documentation.
24//!
25//! [`libpulse-binding`]: https://docs.rs/libpulse-binding
26//! [PulseAudio]: https://en.wikipedia.org/wiki/PulseAudio
27
28#![doc(
29    html_logo_url = "https://github.com/jnqnfe/pulse-binding-rust/raw/master/logo.svg",
30    html_favicon_url = "https://github.com/jnqnfe/pulse-binding-rust/raw/master/favicon.ico"
31)]
32
33#![allow(non_camel_case_types, non_snake_case)]
34
35#![cfg_attr(docsrs, feature(doc_cfg))]
36
37pub mod channelmap;
38pub mod context;
39pub mod def;
40pub mod direction;
41pub mod error;
42pub mod format;
43pub mod mainloop;
44pub mod operation;
45pub mod proplist;
46pub mod rtclock;
47pub mod sample;
48pub mod stream;
49pub mod timeval;
50pub mod utf8;
51pub mod util;
52pub mod version;
53pub mod volume;
54pub mod xmalloc;
55
56// Re-export
57pub use self::channelmap::*;
58pub use self::context::*;
59pub use self::def::*;
60pub use self::direction::*;
61pub use self::error::*;
62pub use self::format::*;
63pub use self::mainloop::*;
64pub use self::operation::*;
65pub use self::proplist::*;
66pub use self::rtclock::*;
67pub use self::sample::*;
68pub use self::stream::*;
69pub use self::timeval::*;
70pub use self::utf8::*;
71pub use self::util::*;
72pub use self::version::*;
73pub use self::volume::*;
74pub use self::xmalloc::*;