]> git.proxmox.com Git - rustc.git/blame - vendor/windows-sys/src/Windows/Foundation/Collections/mod.rs
New upstream version 1.62.1+dfsg1
[rustc.git] / vendor / windows-sys / src / Windows / Foundation / Collections / mod.rs
CommitLineData
5e7ed085 1#![allow(non_snake_case, non_camel_case_types, non_upper_case_globals, clashing_extern_declarations, clippy::all)]
04454e1e 2#[doc = "*Required features: `\"Foundation_Collections\"`*"]
5e7ed085
FG
3#[repr(transparent)]
4pub struct CollectionChange(pub i32);
5impl CollectionChange {
6 pub const Reset: Self = Self(0i32);
7 pub const ItemInserted: Self = Self(1i32);
8 pub const ItemRemoved: Self = Self(2i32);
9 pub const ItemChanged: Self = Self(3i32);
10}
11impl ::core::marker::Copy for CollectionChange {}
12impl ::core::clone::Clone for CollectionChange {
13 fn clone(&self) -> Self {
14 *self
15 }
16}
17pub type IIterable = *mut ::core::ffi::c_void;
18pub type IIterator = *mut ::core::ffi::c_void;
19pub type IKeyValuePair = *mut ::core::ffi::c_void;
20pub type IMap = *mut ::core::ffi::c_void;
21pub type IMapChangedEventArgs = *mut ::core::ffi::c_void;
22pub type IMapView = *mut ::core::ffi::c_void;
23pub type IObservableMap = *mut ::core::ffi::c_void;
24pub type IObservableVector = *mut ::core::ffi::c_void;
25pub type IPropertySet = *mut ::core::ffi::c_void;
26pub type IVector = *mut ::core::ffi::c_void;
27pub type IVectorChangedEventArgs = *mut ::core::ffi::c_void;
28pub type IVectorView = *mut ::core::ffi::c_void;
29pub type MapChangedEventHandler = *mut ::core::ffi::c_void;
30pub type PropertySet = *mut ::core::ffi::c_void;
31pub type StringMap = *mut ::core::ffi::c_void;
32pub type ValueSet = *mut ::core::ffi::c_void;
33pub type VectorChangedEventHandler = *mut ::core::ffi::c_void;