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

//! 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](https://ttappr.github.io/hexchat_api/hexchat_api/struct.Hexchat.html),
//! 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 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 hexchat::*;
//pub use hexchat_callbacks::*;
pub use hexchat_entry_points::*;
pub use list_item::*;
pub use list_iterator::*;
pub use plugin::*;
pub use thread_facilities::*;
pub use threadsafe_context::*;
pub use threadsafe_hexchat::*;
pub use threadsafe_list_iterator::*;
pub use user_data::*;
#[allow(unused_imports)]
pub use utils::*;