summaryrefslogtreecommitdiffstats
path: root/vendor/windows-sys-0.28.0/src/Windows/Phone/Management/Deployment/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/windows-sys-0.28.0/src/Windows/Phone/Management/Deployment/mod.rs')
-rw-r--r--vendor/windows-sys-0.28.0/src/Windows/Phone/Management/Deployment/mod.rs33
1 files changed, 0 insertions, 33 deletions
diff --git a/vendor/windows-sys-0.28.0/src/Windows/Phone/Management/Deployment/mod.rs b/vendor/windows-sys-0.28.0/src/Windows/Phone/Management/Deployment/mod.rs
deleted file mode 100644
index d96982dd2..000000000
--- a/vendor/windows-sys-0.28.0/src/Windows/Phone/Management/Deployment/mod.rs
+++ /dev/null
@@ -1,33 +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 Enterprise = *mut ::core::ffi::c_void;
-pub type EnterpriseEnrollmentResult = *mut ::core::ffi::c_void;
-#[repr(transparent)]
-pub struct EnterpriseEnrollmentStatus(pub i32);
-impl EnterpriseEnrollmentStatus {
- pub const Success: Self = Self(0i32);
- pub const CancelledByUser: Self = Self(1i32);
- pub const UnknownFailure: Self = Self(2i32);
-}
-impl ::core::marker::Copy for EnterpriseEnrollmentStatus {}
-impl ::core::clone::Clone for EnterpriseEnrollmentStatus {
- fn clone(&self) -> Self {
- *self
- }
-}
-#[repr(transparent)]
-pub struct EnterpriseStatus(pub i32);
-impl EnterpriseStatus {
- pub const Enrolled: Self = Self(0i32);
- pub const Disabled: Self = Self(1i32);
- pub const Revoked: Self = Self(2i32);
- pub const Expired: Self = Self(3i32);
-}
-impl ::core::marker::Copy for EnterpriseStatus {}
-impl ::core::clone::Clone for EnterpriseStatus {
- fn clone(&self) -> Self {
- *self
- }
-}
-pub type PackageInstallResult = *mut ::core::ffi::c_void;