1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#![allow(non_snake_case)]
#![allow(non_camel_case_types)]
#![allow(non_upper_case_globals)]
#![allow(unused_imports)]
use crate::*;
use std::os::raw::*;

#[repr(C)]
pub struct Imf_3_0__HalfLut_t {
    _unused: [u8; 0],
}
#[repr(C)]
pub struct Imf_3_0__RgbaLut_t {
    _unused: [u8; 0],
}


extern "C" {

pub fn Imf_3_0__HalfLut_apply(this_: *const Imf_HalfLut_t, data: *mut Imath_half_t, n_data: c_int, stride: c_int) -> Exception;

pub fn Imf_3_0__HalfLut_apply_1(this_: *const Imf_HalfLut_t, data: *const Imf_Slice_t, data_window: *const Imath_Box2i_t) -> Exception;

pub fn Imf_3_0__HalfLut_dtor(this_: *mut Imf_HalfLut_t) -> Exception;

pub fn Imf_3_0__RgbaLut_apply(this_: *const Imf_RgbaLut_t, data: *mut Imf_Rgba_t, n_data: c_int, stride: c_int) -> Exception;

pub fn Imf_3_0__RgbaLut_apply_1(this_: *const Imf_RgbaLut_t, base: *mut Imf_Rgba_t, x_stride: c_int, y_stride: c_int, data_window: *const Imath_Box2i_t) -> Exception;

pub fn Imf_3_0__RgbaLut_dtor(this_: *mut Imf_RgbaLut_t) -> Exception;


} // extern "C"