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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49

//! This crate provides a Rust interface to the
//! [Hexchat Plugin Interface](https://hexchat.readthedocs.io/en/latest/plugins.html)
//! The primary object of the interface is
//! [Hexchat],
//! which exposes an interface with functions that mirror the C functions
//! listed on the Hexchat docs page linked above.

mod hook;
mod callback_data;
mod consts;
mod context;
mod errors;
mod hexchat;
mod hexchat_callbacks;
mod hexchat_entry_points;
mod list_item;
mod list_iterator;
mod plugin;
mod thread_facilities;
mod threadsafe_context;
mod threadsafe_hexchat;
mod threadsafe_list_iterator;
mod user_data;
mod utils;

pub use hook::*;
//pub use callback_data::*;
pub use consts::*;
pub use context::*;
pub use errors::*;
pub use hexchat::*;
//pub use hexchat_callbacks::*;
pub use hexchat_entry_points::*;
pub use list_item::*;
pub use list_iterator::*;
pub use plugin::*;
#[cfg(feature = "threadsafe")]
pub use thread_facilities::*;
#[cfg(feature = "threadsafe")]
pub use threadsafe_context::*;
#[cfg(feature = "threadsafe")]
pub use threadsafe_hexchat::*;
#[cfg(feature = "threadsafe")]
pub use threadsafe_list_iterator::*;
pub use user_data::*;
#[allow(unused_imports)]
pub use utils::*;