summaryrefslogtreecommitdiffstats
path: root/vendor/windows-sys/src/Windows/ApplicationModel/Store/Preview/InstallControl
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:18:21 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:18:21 +0000
commit4e8199b572f2035b7749cba276ece3a26630d23e (patch)
treef09feeed6a0fe39d027b1908aa63ea6b35e4b631 /vendor/windows-sys/src/Windows/ApplicationModel/Store/Preview/InstallControl
parentAdding upstream version 1.66.0+dfsg1. (diff)
downloadrustc-4e8199b572f2035b7749cba276ece3a26630d23e.tar.xz
rustc-4e8199b572f2035b7749cba276ece3a26630d23e.zip
Adding upstream version 1.67.1+dfsg1.upstream/1.67.1+dfsg1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'vendor/windows-sys/src/Windows/ApplicationModel/Store/Preview/InstallControl')
-rw-r--r--vendor/windows-sys/src/Windows/ApplicationModel/Store/Preview/InstallControl/mod.rs91
1 files changed, 0 insertions, 91 deletions
diff --git a/vendor/windows-sys/src/Windows/ApplicationModel/Store/Preview/InstallControl/mod.rs b/vendor/windows-sys/src/Windows/ApplicationModel/Store/Preview/InstallControl/mod.rs
deleted file mode 100644
index 45897f406..000000000
--- a/vendor/windows-sys/src/Windows/ApplicationModel/Store/Preview/InstallControl/mod.rs
+++ /dev/null
@@ -1,91 +0,0 @@
-pub type AppInstallItem = *mut ::core::ffi::c_void;
-pub type AppInstallManager = *mut ::core::ffi::c_void;
-pub type AppInstallManagerItemEventArgs = *mut ::core::ffi::c_void;
-pub type AppInstallOptions = *mut ::core::ffi::c_void;
-#[doc = "*Required features: `\"ApplicationModel_Store_Preview_InstallControl\"`*"]
-#[repr(transparent)]
-pub struct AppInstallState(pub i32);
-impl AppInstallState {
- pub const Pending: Self = Self(0i32);
- pub const Starting: Self = Self(1i32);
- pub const AcquiringLicense: Self = Self(2i32);
- pub const Downloading: Self = Self(3i32);
- pub const RestoringData: Self = Self(4i32);
- pub const Installing: Self = Self(5i32);
- pub const Completed: Self = Self(6i32);
- pub const Canceled: Self = Self(7i32);
- pub const Paused: Self = Self(8i32);
- pub const Error: Self = Self(9i32);
- pub const PausedLowBattery: Self = Self(10i32);
- pub const PausedWiFiRecommended: Self = Self(11i32);
- pub const PausedWiFiRequired: Self = Self(12i32);
- pub const ReadyToDownload: Self = Self(13i32);
-}
-impl ::core::marker::Copy for AppInstallState {}
-impl ::core::clone::Clone for AppInstallState {
- fn clone(&self) -> Self {
- *self
- }
-}
-pub type AppInstallStatus = *mut ::core::ffi::c_void;
-#[doc = "*Required features: `\"ApplicationModel_Store_Preview_InstallControl\"`*"]
-#[repr(transparent)]
-pub struct AppInstallType(pub i32);
-impl AppInstallType {
- pub const Install: Self = Self(0i32);
- pub const Update: Self = Self(1i32);
- pub const Repair: Self = Self(2i32);
-}
-impl ::core::marker::Copy for AppInstallType {}
-impl ::core::clone::Clone for AppInstallType {
- fn clone(&self) -> Self {
- *self
- }
-}
-#[doc = "*Required features: `\"ApplicationModel_Store_Preview_InstallControl\"`*"]
-#[repr(transparent)]
-pub struct AppInstallationToastNotificationMode(pub i32);
-impl AppInstallationToastNotificationMode {
- pub const Default: Self = Self(0i32);
- pub const Toast: Self = Self(1i32);
- pub const ToastWithoutPopup: Self = Self(2i32);
- pub const NoToast: Self = Self(3i32);
-}
-impl ::core::marker::Copy for AppInstallationToastNotificationMode {}
-impl ::core::clone::Clone for AppInstallationToastNotificationMode {
- fn clone(&self) -> Self {
- *self
- }
-}
-pub type AppUpdateOptions = *mut ::core::ffi::c_void;
-#[doc = "*Required features: `\"ApplicationModel_Store_Preview_InstallControl\"`*"]
-#[repr(transparent)]
-pub struct AutoUpdateSetting(pub i32);
-impl AutoUpdateSetting {
- pub const Disabled: Self = Self(0i32);
- pub const Enabled: Self = Self(1i32);
- pub const DisabledByPolicy: Self = Self(2i32);
- pub const EnabledByPolicy: Self = Self(3i32);
-}
-impl ::core::marker::Copy for AutoUpdateSetting {}
-impl ::core::clone::Clone for AutoUpdateSetting {
- fn clone(&self) -> Self {
- *self
- }
-}
-pub type GetEntitlementResult = *mut ::core::ffi::c_void;
-#[doc = "*Required features: `\"ApplicationModel_Store_Preview_InstallControl\"`*"]
-#[repr(transparent)]
-pub struct GetEntitlementStatus(pub i32);
-impl GetEntitlementStatus {
- pub const Succeeded: Self = Self(0i32);
- pub const NoStoreAccount: Self = Self(1i32);
- pub const NetworkError: Self = Self(2i32);
- pub const ServerError: Self = Self(3i32);
-}
-impl ::core::marker::Copy for GetEntitlementStatus {}
-impl ::core::clone::Clone for GetEntitlementStatus {
- fn clone(&self) -> Self {
- *self
- }
-}