summaryrefslogtreecommitdiffstats
path: root/vendor/windows-sys-0.28.0/src/Windows/Devices/Lights
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/windows-sys-0.28.0/src/Windows/Devices/Lights')
-rw-r--r--vendor/windows-sys-0.28.0/src/Windows/Devices/Lights/Effects/mod.rs48
-rw-r--r--vendor/windows-sys-0.28.0/src/Windows/Devices/Lights/mod.rs47
2 files changed, 0 insertions, 95 deletions
diff --git a/vendor/windows-sys-0.28.0/src/Windows/Devices/Lights/Effects/mod.rs b/vendor/windows-sys-0.28.0/src/Windows/Devices/Lights/Effects/mod.rs
deleted file mode 100644
index 7131a8b69..000000000
--- a/vendor/windows-sys-0.28.0/src/Windows/Devices/Lights/Effects/mod.rs
+++ /dev/null
@@ -1,48 +0,0 @@
-#![allow(non_snake_case, non_camel_case_types, non_upper_case_globals, clashing_extern_declarations, clippy::all)]
-#[link(name = "windows")]
-extern "system" {}
-pub type ILampArrayEffect = *mut ::core::ffi::c_void;
-pub type LampArrayBitmapEffect = *mut ::core::ffi::c_void;
-pub type LampArrayBitmapRequestedEventArgs = *mut ::core::ffi::c_void;
-pub type LampArrayBlinkEffect = *mut ::core::ffi::c_void;
-pub type LampArrayColorRampEffect = *mut ::core::ffi::c_void;
-pub type LampArrayCustomEffect = *mut ::core::ffi::c_void;
-#[repr(transparent)]
-pub struct LampArrayEffectCompletionBehavior(pub i32);
-impl LampArrayEffectCompletionBehavior {
- pub const ClearState: Self = Self(0i32);
- pub const KeepState: Self = Self(1i32);
-}
-impl ::core::marker::Copy for LampArrayEffectCompletionBehavior {}
-impl ::core::clone::Clone for LampArrayEffectCompletionBehavior {
- fn clone(&self) -> Self {
- *self
- }
-}
-pub type LampArrayEffectPlaylist = *mut ::core::ffi::c_void;
-#[repr(transparent)]
-pub struct LampArrayEffectStartMode(pub i32);
-impl LampArrayEffectStartMode {
- pub const Sequential: Self = Self(0i32);
- pub const Simultaneous: Self = Self(1i32);
-}
-impl ::core::marker::Copy for LampArrayEffectStartMode {}
-impl ::core::clone::Clone for LampArrayEffectStartMode {
- fn clone(&self) -> Self {
- *self
- }
-}
-#[repr(transparent)]
-pub struct LampArrayRepetitionMode(pub i32);
-impl LampArrayRepetitionMode {
- pub const Occurrences: Self = Self(0i32);
- pub const Forever: Self = Self(1i32);
-}
-impl ::core::marker::Copy for LampArrayRepetitionMode {}
-impl ::core::clone::Clone for LampArrayRepetitionMode {
- fn clone(&self) -> Self {
- *self
- }
-}
-pub type LampArraySolidEffect = *mut ::core::ffi::c_void;
-pub type LampArrayUpdateRequestedEventArgs = *mut ::core::ffi::c_void;
diff --git a/vendor/windows-sys-0.28.0/src/Windows/Devices/Lights/mod.rs b/vendor/windows-sys-0.28.0/src/Windows/Devices/Lights/mod.rs
deleted file mode 100644
index 4e8e17c0b..000000000
--- a/vendor/windows-sys-0.28.0/src/Windows/Devices/Lights/mod.rs
+++ /dev/null
@@ -1,47 +0,0 @@
-#![allow(non_snake_case, non_camel_case_types, non_upper_case_globals, clashing_extern_declarations, clippy::all)]
-#[cfg(feature = "Devices_Lights_Effects")]
-pub mod Effects;
-#[link(name = "windows")]
-extern "system" {}
-pub type Lamp = *mut ::core::ffi::c_void;
-pub type LampArray = *mut ::core::ffi::c_void;
-#[repr(transparent)]
-pub struct LampArrayKind(pub i32);
-impl LampArrayKind {
- pub const Undefined: Self = Self(0i32);
- pub const Keyboard: Self = Self(1i32);
- pub const Mouse: Self = Self(2i32);
- pub const GameController: Self = Self(3i32);
- pub const Peripheral: Self = Self(4i32);
- pub const Scene: Self = Self(5i32);
- pub const Notification: Self = Self(6i32);
- pub const Chassis: Self = Self(7i32);
- pub const Wearable: Self = Self(8i32);
- pub const Furniture: Self = Self(9i32);
- pub const Art: Self = Self(10i32);
-}
-impl ::core::marker::Copy for LampArrayKind {}
-impl ::core::clone::Clone for LampArrayKind {
- fn clone(&self) -> Self {
- *self
- }
-}
-pub type LampAvailabilityChangedEventArgs = *mut ::core::ffi::c_void;
-pub type LampInfo = *mut ::core::ffi::c_void;
-#[repr(transparent)]
-pub struct LampPurposes(pub u32);
-impl LampPurposes {
- pub const Undefined: Self = Self(0u32);
- pub const Control: Self = Self(1u32);
- pub const Accent: Self = Self(2u32);
- pub const Branding: Self = Self(4u32);
- pub const Status: Self = Self(8u32);
- pub const Illumination: Self = Self(16u32);
- pub const Presentation: Self = Self(32u32);
-}
-impl ::core::marker::Copy for LampPurposes {}
-impl ::core::clone::Clone for LampPurposes {
- fn clone(&self) -> Self {
- *self
- }
-}