]> git.proxmox.com Git - rustc.git/blob - vendor/windows-sys-0.28.0/src/Windows/ApplicationModel/Core/mod.rs
New upstream version 1.64.0+dfsg1
[rustc.git] / vendor / windows-sys-0.28.0 / src / Windows / ApplicationModel / Core / mod.rs
1 #![allow(non_snake_case, non_camel_case_types, non_upper_case_globals, clashing_extern_declarations, clippy::all)]
2 #[link(name = "windows")]
3 extern "system" {}
4 pub type AppListEntry = *mut ::core::ffi::c_void;
5 #[repr(transparent)]
6 pub struct AppRestartFailureReason(pub i32);
7 impl AppRestartFailureReason {
8 pub const RestartPending: Self = Self(0i32);
9 pub const NotInForeground: Self = Self(1i32);
10 pub const InvalidUser: Self = Self(2i32);
11 pub const Other: Self = Self(3i32);
12 }
13 impl ::core::marker::Copy for AppRestartFailureReason {}
14 impl ::core::clone::Clone for AppRestartFailureReason {
15 fn clone(&self) -> Self {
16 *self
17 }
18 }
19 pub type CoreApplicationView = *mut ::core::ffi::c_void;
20 pub type CoreApplicationViewTitleBar = *mut ::core::ffi::c_void;
21 pub type HostedViewClosingEventArgs = *mut ::core::ffi::c_void;
22 pub type ICoreApplicationUnhandledError = *mut ::core::ffi::c_void;
23 pub type IFrameworkView = *mut ::core::ffi::c_void;
24 pub type IFrameworkViewSource = *mut ::core::ffi::c_void;
25 pub type UnhandledError = *mut ::core::ffi::c_void;
26 pub type UnhandledErrorDetectedEventArgs = *mut ::core::ffi::c_void;