ts3plugin_sys/
lib.rs

1//! The low-level rust bindings of the TeamSpeak3 plugin API.
2//! The original SDK and documentation can be downloaded from
3//! the [TeamSpeak website](https://www.teamspeak.com/en/downloads/).
4
5#[macro_use]
6extern crate bitflags;
7
8pub mod plugin_definitions;
9pub mod public_definitions;
10pub mod public_errors;
11pub mod ts3functions;