summaryrefslogtreecommitdiffstats
path: root/vendor/windows-sys/src/Windows/Media/Devices/Core/mod.rs
blob: 61d71dd5dd2030309f481c1c0b41c60dc9450d27 (plain)
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
pub type CameraIntrinsics = *mut ::core::ffi::c_void;
pub type DepthCorrelatedCoordinateMapper = *mut ::core::ffi::c_void;
pub type FrameControlCapabilities = *mut ::core::ffi::c_void;
pub type FrameController = *mut ::core::ffi::c_void;
pub type FrameExposureCapabilities = *mut ::core::ffi::c_void;
pub type FrameExposureCompensationCapabilities = *mut ::core::ffi::c_void;
pub type FrameExposureCompensationControl = *mut ::core::ffi::c_void;
pub type FrameExposureControl = *mut ::core::ffi::c_void;
pub type FrameFlashCapabilities = *mut ::core::ffi::c_void;
pub type FrameFlashControl = *mut ::core::ffi::c_void;
#[doc = "*Required features: `\"Media_Devices_Core\"`*"]
#[repr(transparent)]
pub struct FrameFlashMode(pub i32);
impl FrameFlashMode {
    pub const Disable: Self = Self(0i32);
    pub const Enable: Self = Self(1i32);
    pub const Global: Self = Self(2i32);
}
impl ::core::marker::Copy for FrameFlashMode {}
impl ::core::clone::Clone for FrameFlashMode {
    fn clone(&self) -> Self {
        *self
    }
}
pub type FrameFocusCapabilities = *mut ::core::ffi::c_void;
pub type FrameFocusControl = *mut ::core::ffi::c_void;
pub type FrameIsoSpeedCapabilities = *mut ::core::ffi::c_void;
pub type FrameIsoSpeedControl = *mut ::core::ffi::c_void;
pub type VariablePhotoSequenceController = *mut ::core::ffi::c_void;