premiere_sys/
lib.rs

1#![allow(clippy::all)]
2#![allow(improper_ctypes)]
3#![allow(non_camel_case_types)]
4#![allow(non_upper_case_globals)]
5#![allow(non_snake_case)]
6#![allow(unused_attributes)]
7
8// TODO Description
9
10// Included bindings are generated from Premiere SDK dated Mar 2024
11
12#[cfg(all(target_os = "windows", builtin_bindings))]
13include!(concat!(env!("CARGO_MANIFEST_DIR"), "/bindings_win.rs"));
14
15#[cfg(all(any(target_os = "macos", target_os = "linux"), builtin_bindings))]
16include!(concat!(env!("CARGO_MANIFEST_DIR"), "/bindings_macos.rs"));
17
18#[cfg(not(builtin_bindings))]
19include!(concat!(env!("OUT_DIR"), "/bindings.rs"));