1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
//! A crate to help make working with FFI easier.

extern crate failure;
#[macro_use]
extern crate failure_derive;
extern crate libc;

#[macro_use]
mod nullable;
pub mod error_handling;
pub mod panic;
pub mod task;

pub use nullable::{NullPointer, Nullable};
pub use error_handling::{error_message, take_last_error, update_last_error};
pub use panic::catch_panic;
pub use task::Task;