]> git.proxmox.com Git - rustc.git/blame - vendor/windows-sys/src/Windows/ApplicationModel/Core/mod.rs
New upstream version 1.63.0+dfsg1
[rustc.git] / vendor / windows-sys / src / Windows / ApplicationModel / Core / mod.rs
CommitLineData
5e7ed085 1pub type AppListEntry = *mut ::core::ffi::c_void;
04454e1e 2#[doc = "*Required features: `\"ApplicationModel_Core\"`*"]
5e7ed085
FG
3#[repr(transparent)]
4pub struct AppRestartFailureReason(pub i32);
5impl AppRestartFailureReason {
6 pub const RestartPending: Self = Self(0i32);
7 pub const NotInForeground: Self = Self(1i32);
8 pub const InvalidUser: Self = Self(2i32);
9 pub const Other: Self = Self(3i32);
10}
11impl ::core::marker::Copy for AppRestartFailureReason {}
12impl ::core::clone::Clone for AppRestartFailureReason {
13 fn clone(&self) -> Self {
14 *self
15 }
16}
17pub type CoreApplicationView = *mut ::core::ffi::c_void;
18pub type CoreApplicationViewTitleBar = *mut ::core::ffi::c_void;
19pub type HostedViewClosingEventArgs = *mut ::core::ffi::c_void;
20pub type ICoreApplicationUnhandledError = *mut ::core::ffi::c_void;
21pub type IFrameworkView = *mut ::core::ffi::c_void;
22pub type IFrameworkViewSource = *mut ::core::ffi::c_void;
23pub type UnhandledError = *mut ::core::ffi::c_void;
24pub type UnhandledErrorDetectedEventArgs = *mut ::core::ffi::c_void;