ffi_helpers/
lib.rs

1//! A crate to help make working with FFI easier.
2
3#[macro_use]
4mod nullable;
5#[macro_use]
6pub mod task;
7
8pub mod error_handling;
9pub mod panic;
10mod split;
11
12pub use crate::{
13    error_handling::{error_message, take_last_error, update_last_error},
14    nullable::{NullPointer, Nullable},
15    panic::catch_panic,
16    split::{split_closure, Split},
17    task::Task,
18};