]> git.proxmox.com Git - rustc.git/blob - vendor/windows-sys-0.28.0/src/Windows/UI/Notifications/Management/mod.rs
New upstream version 1.64.0+dfsg1
[rustc.git] / vendor / windows-sys-0.28.0 / src / Windows / UI / Notifications / Management / 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 UserNotificationListener = *mut ::core::ffi::c_void;
5 #[repr(transparent)]
6 pub struct UserNotificationListenerAccessStatus(pub i32);
7 impl UserNotificationListenerAccessStatus {
8 pub const Unspecified: Self = Self(0i32);
9 pub const Allowed: Self = Self(1i32);
10 pub const Denied: Self = Self(2i32);
11 }
12 impl ::core::marker::Copy for UserNotificationListenerAccessStatus {}
13 impl ::core::clone::Clone for UserNotificationListenerAccessStatus {
14 fn clone(&self) -> Self {
15 *self
16 }
17 }