summaryrefslogtreecommitdiffstats
path: root/vendor/windows-sys/src/Windows/Devices/Enumeration/Pnp/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/windows-sys/src/Windows/Devices/Enumeration/Pnp/mod.rs')
-rw-r--r--vendor/windows-sys/src/Windows/Devices/Enumeration/Pnp/mod.rs24
1 files changed, 24 insertions, 0 deletions
diff --git a/vendor/windows-sys/src/Windows/Devices/Enumeration/Pnp/mod.rs b/vendor/windows-sys/src/Windows/Devices/Enumeration/Pnp/mod.rs
new file mode 100644
index 000000000..fb3930e47
--- /dev/null
+++ b/vendor/windows-sys/src/Windows/Devices/Enumeration/Pnp/mod.rs
@@ -0,0 +1,24 @@
+pub type PnpObject = *mut ::core::ffi::c_void;
+pub type PnpObjectCollection = *mut ::core::ffi::c_void;
+#[doc = "*Required features: `\"Devices_Enumeration_Pnp\"`*"]
+#[repr(transparent)]
+pub struct PnpObjectType(pub i32);
+impl PnpObjectType {
+ pub const Unknown: Self = Self(0i32);
+ pub const DeviceInterface: Self = Self(1i32);
+ pub const DeviceContainer: Self = Self(2i32);
+ pub const Device: Self = Self(3i32);
+ pub const DeviceInterfaceClass: Self = Self(4i32);
+ pub const AssociationEndpoint: Self = Self(5i32);
+ pub const AssociationEndpointContainer: Self = Self(6i32);
+ pub const AssociationEndpointService: Self = Self(7i32);
+ pub const DevicePanel: Self = Self(8i32);
+}
+impl ::core::marker::Copy for PnpObjectType {}
+impl ::core::clone::Clone for PnpObjectType {
+ fn clone(&self) -> Self {
+ *self
+ }
+}
+pub type PnpObjectUpdate = *mut ::core::ffi::c_void;
+pub type PnpObjectWatcher = *mut ::core::ffi::c_void;