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