#![allow(non_snake_case)]
pub mod NativeWindowOperation {
pub type Type = ::core::ffi::c_uint;
pub const SET_BUFFER_GEOMETRY: Type = 0;
pub const GET_BUFFER_GEOMETRY: Type = 1;
pub const GET_FORMAT: Type = 2;
pub const SET_FORMAT: Type = 3;
pub const GET_USAGE: Type = 4;
pub const SET_USAGE: Type = 5;
pub const SET_STRIDE: Type = 6;
pub const GET_STRIDE: Type = 7;
pub const SET_SWAP_INTERVAL: Type = 8;
pub const GET_SWAP_INTERVAL: Type = 9;
pub const SET_TIMEOUT: Type = 10;
pub const GET_TIMEOUT: Type = 11;
pub const SET_COLOR_GAMUT: Type = 12;
pub const GET_COLOR_GAMUT: Type = 13;
pub const SET_TRANSFORM: Type = 14;
pub const GET_TRANSFORM: Type = 15;
pub const SET_UI_TIMESTAMP: Type = 16;
}