summaryrefslogtreecommitdiffstats
path: root/vendor/windows-sys-0.28.0/src/Windows/Devices/Custom/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/windows-sys-0.28.0/src/Windows/Devices/Custom/mod.rs')
-rw-r--r--vendor/windows-sys-0.28.0/src/Windows/Devices/Custom/mod.rs59
1 files changed, 0 insertions, 59 deletions
diff --git a/vendor/windows-sys-0.28.0/src/Windows/Devices/Custom/mod.rs b/vendor/windows-sys-0.28.0/src/Windows/Devices/Custom/mod.rs
deleted file mode 100644
index 303f79a0d..000000000
--- a/vendor/windows-sys-0.28.0/src/Windows/Devices/Custom/mod.rs
+++ /dev/null
@@ -1,59 +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 CustomDevice = *mut ::core::ffi::c_void;
-#[repr(transparent)]
-pub struct DeviceAccessMode(pub i32);
-impl DeviceAccessMode {
- pub const Read: Self = Self(0i32);
- pub const Write: Self = Self(1i32);
- pub const ReadWrite: Self = Self(2i32);
-}
-impl ::core::marker::Copy for DeviceAccessMode {}
-impl ::core::clone::Clone for DeviceAccessMode {
- fn clone(&self) -> Self {
- *self
- }
-}
-#[repr(transparent)]
-pub struct DeviceSharingMode(pub i32);
-impl DeviceSharingMode {
- pub const Shared: Self = Self(0i32);
- pub const Exclusive: Self = Self(1i32);
-}
-impl ::core::marker::Copy for DeviceSharingMode {}
-impl ::core::clone::Clone for DeviceSharingMode {
- fn clone(&self) -> Self {
- *self
- }
-}
-pub type IIOControlCode = *mut ::core::ffi::c_void;
-#[repr(transparent)]
-pub struct IOControlAccessMode(pub i32);
-impl IOControlAccessMode {
- pub const Any: Self = Self(0i32);
- pub const Read: Self = Self(1i32);
- pub const Write: Self = Self(2i32);
- pub const ReadWrite: Self = Self(3i32);
-}
-impl ::core::marker::Copy for IOControlAccessMode {}
-impl ::core::clone::Clone for IOControlAccessMode {
- fn clone(&self) -> Self {
- *self
- }
-}
-#[repr(transparent)]
-pub struct IOControlBufferingMethod(pub i32);
-impl IOControlBufferingMethod {
- pub const Buffered: Self = Self(0i32);
- pub const DirectInput: Self = Self(1i32);
- pub const DirectOutput: Self = Self(2i32);
- pub const Neither: Self = Self(3i32);
-}
-impl ::core::marker::Copy for IOControlBufferingMethod {}
-impl ::core::clone::Clone for IOControlBufferingMethod {
- fn clone(&self) -> Self {
- *self
- }
-}
-pub type IOControlCode = *mut ::core::ffi::c_void;