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
34
#![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, align(4))]
#[derive(Clone)]
pub struct Imf_3_0__Chromaticities_t {
    pub red: Imath_V2f_t,
    pub green: Imath_V2f_t,
    pub blue: Imath_V2f_t,
    pub white: Imath_V2f_t,
}



extern "C" {

pub fn Imf_3_0__Chromaticities_ctor(this_: *mut Imf_Chromaticities_t, red: *const Imath_V2f_t, green: *const Imath_V2f_t, blue: *const Imath_V2f_t, white: *const Imath_V2f_t) -> Exception;

pub fn Imf_3_0__Chromaticities__eq(this_: *const Imf_Chromaticities_t, return_: *mut bool, v: *const Imf_Chromaticities_t) -> Exception;

pub fn Imf_3_0__Chromaticities__ne(this_: *const Imf_Chromaticities_t, return_: *mut bool, v: *const Imf_Chromaticities_t) -> Exception;

pub fn Imf_3_0__Chromaticities_copy(this_: *mut Imf_Chromaticities_t, rhs: *const Imf_Chromaticities_t) -> Exception;

pub fn Imf_3_0__Chromaticities_move(this_: *mut Imf_Chromaticities_t, rhs: *mut Imf_Chromaticities_t) -> Exception;

pub fn Imf_3_0__Chromaticities_dtor(this_: *mut Imf_Chromaticities_t) -> Exception;


} // extern "C"