rofisys 0.2.6

This system crate provides Rust language bindings (via the use of Bindgen) to the Rust-OFI library.
1
2
3
4
5
6
7
8
9
10
extern crate rofisys;

fn main() {
    unsafe {

        let retval = rofisys::rofi_init(); // -> ::std::os::raw::c_int;
        println!("rofi_init = {}\n", retval);
        rofisys::rofi_finit();
    }
}