v4l2-sys 1.0.0

Rust FFI binding for the C API of Video for Linux API version 2, V4L2.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
extern crate bindgen;

use std::env;
use std::path::PathBuf;

fn main() {
    let bindings = bindgen::Builder::default()
        .header("wrapper.h")
        .generate()
        .expect("Unable to generate bindings");
    let out_path = PathBuf::from(env::var("OUT_DIR").unwrap());
    bindings
        .write_to_file(out_path.join("bindings.rs"))
        .expect("Couldn't write bindings!");
}