]> git.proxmox.com Git - rustc.git/blob - vendor/windows-sys-0.28.0/src/Windows/ApplicationModel/Contacts/Provider/mod.rs
New upstream version 1.66.0+dfsg1
[rustc.git] / vendor / windows-sys-0.28.0 / src / Windows / ApplicationModel / Contacts / Provider / 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 #[repr(transparent)]
5 pub struct AddContactResult(pub i32);
6 impl AddContactResult {
7 pub const Added: Self = Self(0i32);
8 pub const AlreadyAdded: Self = Self(1i32);
9 pub const Unavailable: Self = Self(2i32);
10 }
11 impl ::core::marker::Copy for AddContactResult {}
12 impl ::core::clone::Clone for AddContactResult {
13 fn clone(&self) -> Self {
14 *self
15 }
16 }
17 pub type ContactPickerUI = *mut ::core::ffi::c_void;
18 pub type ContactRemovedEventArgs = *mut ::core::ffi::c_void;