1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/*
 * SPDX-License-Identifier: MIT
 */

//! PipeWire [Simple Plugin API](https://docs.pipewire.org/group__api__spa.html) bindings.
//!
use std::time::Duration;

use pipewire_wrapper_proc_macro::RawWrapper;

pub mod buffers;
pub mod dict;
pub mod handle;
pub mod interface;
pub mod io;
pub mod list;
pub mod loop_;
pub mod param;
pub mod pod;
pub mod support;
pub mod system;
pub mod thread;
pub mod type_;

pub const SPA_ID_INVALID: u32 = 0xffffffff; // Missing in the bindings for some reason