rsraw-sys 0.1.1

Low-level FFI bindings for the LibRaw C++ library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#![allow(
    non_camel_case_types,
    non_upper_case_globals,
    clippy::approx_constant,
    clippy::redundant_static_lifetimes,
    non_snake_case
)]
#![no_std]

mod c_api {
    include!(concat!(env!("OUT_DIR"), "/bindings.rs"));
}

pub use c_api::*;