1#![allow(non_snake_case, non_camel_case_types, non_upper_case_globals, improper_ctypes)]
2
3extern crate core_graphics2 as core_graphics;
4
5pub type OSType = u32;
6
7#[cfg(any(target_os = "macos", target_os = "ios"))]
8#[cfg_attr(feature = "link", link(name = "CoreMedia", kind = "framework"))]
9extern "C" {}
10
11pub mod attachment;
12#[cfg(target_os = "ios")]
13pub mod audio_clock;
14pub mod audio_device_clock;
15pub mod base;
16pub mod block_buffer;
17pub mod buffer_queue;
18pub mod format_description;
19pub mod format_description_bridge;
20pub mod sample_buffer;
21pub mod sample_queue;
22pub mod sync;
23pub mod time;
24pub mod time_range;