summaryrefslogtreecommitdiffstats
path: root/vendor/windows-sys/src/Windows/System/Diagnostics/Telemetry/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/windows-sys/src/Windows/System/Diagnostics/Telemetry/mod.rs')
-rw-r--r--vendor/windows-sys/src/Windows/System/Diagnostics/Telemetry/mod.rs16
1 files changed, 0 insertions, 16 deletions
diff --git a/vendor/windows-sys/src/Windows/System/Diagnostics/Telemetry/mod.rs b/vendor/windows-sys/src/Windows/System/Diagnostics/Telemetry/mod.rs
deleted file mode 100644
index 67fd61635..000000000
--- a/vendor/windows-sys/src/Windows/System/Diagnostics/Telemetry/mod.rs
+++ /dev/null
@@ -1,16 +0,0 @@
-pub type PlatformTelemetryRegistrationResult = *mut ::core::ffi::c_void;
-pub type PlatformTelemetryRegistrationSettings = *mut ::core::ffi::c_void;
-#[doc = "*Required features: `\"System_Diagnostics_Telemetry\"`*"]
-#[repr(transparent)]
-pub struct PlatformTelemetryRegistrationStatus(pub i32);
-impl PlatformTelemetryRegistrationStatus {
- pub const Success: Self = Self(0i32);
- pub const SettingsOutOfRange: Self = Self(1i32);
- pub const UnknownFailure: Self = Self(2i32);
-}
-impl ::core::marker::Copy for PlatformTelemetryRegistrationStatus {}
-impl ::core::clone::Clone for PlatformTelemetryRegistrationStatus {
- fn clone(&self) -> Self {
- *self
- }
-}