libspa_sys/
command.rs

1use super::*;
2
3extern "C" {
4    #[link_name = "libspa_rs_command_type"]
5    pub fn spa_command_type(cmd: *mut spa_command) -> u32;
6
7    #[link_name = "libspa_rs_command_id"]
8    pub fn spa_command_id(cmd: *mut spa_command, type_: u32) -> u32;
9
10    #[link_name = "libspa_rs_command_init"]
11    pub fn spa_command_init(type_: u32, id: u32) -> spa_command;
12}