leapcpp-sys 0.1.0

FFI bindings to the Leap Motion SDK 2.3.1
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#![allow(non_upper_case_globals)]
#![allow(non_camel_case_types)]
#![allow(non_snake_case)]
#![allow(deref_nullptr)]

// FIXME: There's a pretty severe bug in bindgen that makes it silently generate incorrect code.
// For more details, see https://github.com/rust-lang/rust-bindgen/issues/778.
// I've manually fixed the generated bindings to use explicit out-pointers where necessary.

//include!(concat!(env!("OUT_DIR"), "/bindings.rs"));

mod bindings;

pub use bindings::*;