// Bindings generated by `windows-bindgen` 0.52.0 #![allow(non_snake_case, non_upper_case_globals, non_camel_case_types, dead_code, clippy::all)] #[inline] pub unsafe fn CoCreateGuid() -> ::windows_core::Result<::windows_core::GUID> { ::windows_targets::link!("ole32.dll" "system" fn CoCreateGuid(pguid : *mut ::windows_core::GUID) -> ::windows_core::HRESULT); let mut result__ = ::std::mem::zeroed(); CoCreateGuid(&mut result__).from_abi(result__) } #[inline] pub unsafe fn RoGetAgileReference(options: AgileReferenceOptions, riid: *const ::windows_core::GUID, punk: P0) -> ::windows_core::Result where P0: ::windows_core::IntoParam<::windows_core::IUnknown>, { ::windows_targets::link!("ole32.dll" "system" fn RoGetAgileReference(options : AgileReferenceOptions, riid : *const ::windows_core::GUID, punk : * mut::core::ffi::c_void, ppagilereference : *mut * mut::core::ffi::c_void) -> ::windows_core::HRESULT); let mut result__ = ::std::mem::zeroed(); RoGetAgileReference(options, riid, punk.into_param().abi(), &mut result__).from_abi(result__) } #[inline] pub unsafe fn GetErrorInfo(dwreserved: u32) -> ::windows_core::Result { ::windows_targets::link!("oleaut32.dll" "system" fn GetErrorInfo(dwreserved : u32, pperrinfo : *mut * mut::core::ffi::c_void) -> ::windows_core::HRESULT); let mut result__ = ::std::mem::zeroed(); GetErrorInfo(dwreserved, &mut result__).from_abi(result__) } #[inline] pub unsafe fn SetErrorInfo(dwreserved: u32, perrinfo: P0) -> ::windows_core::Result<()> where P0: ::windows_core::IntoParam, { ::windows_targets::link!("oleaut32.dll" "system" fn SetErrorInfo(dwreserved : u32, perrinfo : * mut::core::ffi::c_void) -> ::windows_core::HRESULT); SetErrorInfo(dwreserved, perrinfo.into_param().abi()).ok() } pub const AGILEREFERENCE_DEFAULT: AgileReferenceOptions = AgileReferenceOptions(0i32); #[repr(transparent)] #[derive(::core::cmp::PartialEq, ::core::cmp::Eq)] pub struct AgileReferenceOptions(pub i32); impl ::core::marker::Copy for AgileReferenceOptions {} impl ::core::clone::Clone for AgileReferenceOptions { fn clone(&self) -> Self { *self } } impl ::core::default::Default for AgileReferenceOptions { fn default() -> Self { Self(0) } } impl ::windows_core::TypeKind for AgileReferenceOptions { type TypeKind = ::windows_core::CopyType; } impl ::core::fmt::Debug for AgileReferenceOptions { fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_tuple("AgileReferenceOptions").field(&self.0).finish() } } pub const CLASS_E_CLASSNOTAVAILABLE: ::windows_core::HRESULT = ::windows_core::HRESULT(-2147221231i32); pub const CO_E_NOTINITIALIZED: ::windows_core::HRESULT = ::windows_core::HRESULT(-2147221008i32); #[repr(C)] pub struct DateTime { pub UniversalTime: i64, } impl ::core::marker::Copy for DateTime {} impl ::core::clone::Clone for DateTime { fn clone(&self) -> Self { *self } } impl ::core::fmt::Debug for DateTime { fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("DateTime").field("UniversalTime", &self.UniversalTime).finish() } } impl ::windows_core::TypeKind for DateTime { type TypeKind = ::windows_core::CopyType; } impl ::windows_core::RuntimeType for DateTime { const SIGNATURE: ::windows_core::imp::ConstBuffer = ::windows_core::imp::ConstBuffer::from_slice(b"struct(Windows.Foundation.DateTime;i8)"); } impl ::core::cmp::PartialEq for DateTime { fn eq(&self, other: &Self) -> bool { self.UniversalTime == other.UniversalTime } } impl ::core::cmp::Eq for DateTime {} impl ::core::default::Default for DateTime { fn default() -> Self { unsafe { ::core::mem::zeroed() } } } pub const E_BOUNDS: ::windows_core::HRESULT = ::windows_core::HRESULT(-2147483637i32); pub const E_NOINTERFACE: ::windows_core::HRESULT = ::windows_core::HRESULT(-2147467262i32); pub const E_OUTOFMEMORY: ::windows_core::HRESULT = ::windows_core::HRESULT(-2147024882i32); #[repr(transparent)] #[derive(::core::cmp::PartialEq, ::core::cmp::Eq, ::core::fmt::Debug, ::core::clone::Clone)] pub struct IAgileObject(::windows_core::IUnknown); impl IAgileObject {} ::windows_core::imp::interface_hierarchy!(IAgileObject, ::windows_core::IUnknown); unsafe impl ::windows_core::Interface for IAgileObject { type Vtable = IAgileObject_Vtbl; } unsafe impl ::windows_core::ComInterface for IAgileObject { const IID: ::windows_core::GUID = ::windows_core::GUID::from_u128(0x94ea2b94_e9cc_49e0_c0ff_ee64ca8f5b90); } #[repr(C)] #[doc(hidden)] pub struct IAgileObject_Vtbl { pub base__: ::windows_core::IUnknown_Vtbl, } #[repr(transparent)] #[derive(::core::cmp::PartialEq, ::core::cmp::Eq, ::core::fmt::Debug, ::core::clone::Clone)] pub struct IAgileReference(::windows_core::IUnknown); impl IAgileReference { pub unsafe fn Resolve(&self) -> ::windows_core::Result where T: ::windows_core::ComInterface, { let mut result__ = ::std::ptr::null_mut(); (::windows_core::Interface::vtable(self).Resolve)(::windows_core::Interface::as_raw(self), &::IID, &mut result__).from_abi(result__) } } ::windows_core::imp::interface_hierarchy!(IAgileReference, ::windows_core::IUnknown); unsafe impl ::windows_core::Interface for IAgileReference { type Vtable = IAgileReference_Vtbl; } unsafe impl ::windows_core::ComInterface for IAgileReference { const IID: ::windows_core::GUID = ::windows_core::GUID::from_u128(0xc03f6a43_65a4_9818_987e_e0b810d2a6f2); } #[repr(C)] #[doc(hidden)] pub struct IAgileReference_Vtbl { pub base__: ::windows_core::IUnknown_Vtbl, pub Resolve: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, riid: *const ::windows_core::GUID, ppvobjectreference: *mut *mut ::core::ffi::c_void) -> ::windows_core::HRESULT, } #[repr(transparent)] #[derive(::core::cmp::PartialEq, ::core::cmp::Eq, ::core::fmt::Debug, ::core::clone::Clone)] pub struct IErrorInfo(::windows_core::IUnknown); impl IErrorInfo { pub unsafe fn GetGUID(&self) -> ::windows_core::Result<::windows_core::GUID> { let mut result__ = ::std::mem::zeroed(); (::windows_core::Interface::vtable(self).GetGUID)(::windows_core::Interface::as_raw(self), &mut result__).from_abi(result__) } pub unsafe fn GetSource(&self) -> ::windows_core::Result<::windows_core::BSTR> { let mut result__ = ::std::mem::zeroed(); (::windows_core::Interface::vtable(self).GetSource)(::windows_core::Interface::as_raw(self), &mut result__).from_abi(result__) } pub unsafe fn GetDescription(&self) -> ::windows_core::Result<::windows_core::BSTR> { let mut result__ = ::std::mem::zeroed(); (::windows_core::Interface::vtable(self).GetDescription)(::windows_core::Interface::as_raw(self), &mut result__).from_abi(result__) } pub unsafe fn GetHelpFile(&self) -> ::windows_core::Result<::windows_core::BSTR> { let mut result__ = ::std::mem::zeroed(); (::windows_core::Interface::vtable(self).GetHelpFile)(::windows_core::Interface::as_raw(self), &mut result__).from_abi(result__) } pub unsafe fn GetHelpContext(&self) -> ::windows_core::Result { let mut result__ = ::std::mem::zeroed(); (::windows_core::Interface::vtable(self).GetHelpContext)(::windows_core::Interface::as_raw(self), &mut result__).from_abi(result__) } } ::windows_core::imp::interface_hierarchy!(IErrorInfo, ::windows_core::IUnknown); unsafe impl ::windows_core::Interface for IErrorInfo { type Vtable = IErrorInfo_Vtbl; } unsafe impl ::windows_core::ComInterface for IErrorInfo { const IID: ::windows_core::GUID = ::windows_core::GUID::from_u128(0x1cf2b120_547d_101b_8e65_08002b2bd119); } #[repr(C)] #[doc(hidden)] pub struct IErrorInfo_Vtbl { pub base__: ::windows_core::IUnknown_Vtbl, pub GetGUID: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, pguid: *mut ::windows_core::GUID) -> ::windows_core::HRESULT, pub GetSource: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, pbstrsource: *mut ::std::mem::MaybeUninit<::windows_core::BSTR>) -> ::windows_core::HRESULT, pub GetDescription: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, pbstrdescription: *mut ::std::mem::MaybeUninit<::windows_core::BSTR>) -> ::windows_core::HRESULT, pub GetHelpFile: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, pbstrhelpfile: *mut ::std::mem::MaybeUninit<::windows_core::BSTR>) -> ::windows_core::HRESULT, pub GetHelpContext: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, pdwhelpcontext: *mut u32) -> ::windows_core::HRESULT, } #[repr(transparent)] #[derive(::core::cmp::PartialEq, ::core::cmp::Eq, ::core::fmt::Debug, ::core::clone::Clone)] pub struct ILanguageExceptionErrorInfo(::windows_core::IUnknown); impl ILanguageExceptionErrorInfo { pub unsafe fn GetLanguageException(&self) -> ::windows_core::Result<::windows_core::IUnknown> { let mut result__ = ::std::mem::zeroed(); (::windows_core::Interface::vtable(self).GetLanguageException)(::windows_core::Interface::as_raw(self), &mut result__).from_abi(result__) } } ::windows_core::imp::interface_hierarchy!(ILanguageExceptionErrorInfo, ::windows_core::IUnknown); unsafe impl ::windows_core::Interface for ILanguageExceptionErrorInfo { type Vtable = ILanguageExceptionErrorInfo_Vtbl; } unsafe impl ::windows_core::ComInterface for ILanguageExceptionErrorInfo { const IID: ::windows_core::GUID = ::windows_core::GUID::from_u128(0x04a2dbf3_df83_116c_0946_0812abf6e07d); } #[repr(C)] #[doc(hidden)] pub struct ILanguageExceptionErrorInfo_Vtbl { pub base__: ::windows_core::IUnknown_Vtbl, pub GetLanguageException: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, languageexception: *mut *mut ::core::ffi::c_void) -> ::windows_core::HRESULT, } #[repr(transparent)] #[derive(::core::cmp::PartialEq, ::core::cmp::Eq, ::core::fmt::Debug, ::core::clone::Clone)] pub struct ILanguageExceptionErrorInfo2(::windows_core::IUnknown); impl ILanguageExceptionErrorInfo2 { pub unsafe fn GetLanguageException(&self) -> ::windows_core::Result<::windows_core::IUnknown> { let mut result__ = ::std::mem::zeroed(); (::windows_core::Interface::vtable(self).base__.GetLanguageException)(::windows_core::Interface::as_raw(self), &mut result__).from_abi(result__) } pub unsafe fn GetPreviousLanguageExceptionErrorInfo(&self) -> ::windows_core::Result { let mut result__ = ::std::mem::zeroed(); (::windows_core::Interface::vtable(self).GetPreviousLanguageExceptionErrorInfo)(::windows_core::Interface::as_raw(self), &mut result__).from_abi(result__) } pub unsafe fn CapturePropagationContext(&self, languageexception: P0) -> ::windows_core::Result<()> where P0: ::windows_core::IntoParam<::windows_core::IUnknown>, { (::windows_core::Interface::vtable(self).CapturePropagationContext)(::windows_core::Interface::as_raw(self), languageexception.into_param().abi()).ok() } pub unsafe fn GetPropagationContextHead(&self) -> ::windows_core::Result { let mut result__ = ::std::mem::zeroed(); (::windows_core::Interface::vtable(self).GetPropagationContextHead)(::windows_core::Interface::as_raw(self), &mut result__).from_abi(result__) } } ::windows_core::imp::interface_hierarchy!(ILanguageExceptionErrorInfo2, ::windows_core::IUnknown, ILanguageExceptionErrorInfo); unsafe impl ::windows_core::Interface for ILanguageExceptionErrorInfo2 { type Vtable = ILanguageExceptionErrorInfo2_Vtbl; } unsafe impl ::windows_core::ComInterface for ILanguageExceptionErrorInfo2 { const IID: ::windows_core::GUID = ::windows_core::GUID::from_u128(0x5746e5c4_5b97_424c_b620_2822915734dd); } #[repr(C)] #[doc(hidden)] pub struct ILanguageExceptionErrorInfo2_Vtbl { pub base__: ILanguageExceptionErrorInfo_Vtbl, pub GetPreviousLanguageExceptionErrorInfo: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, previouslanguageexceptionerrorinfo: *mut *mut ::core::ffi::c_void) -> ::windows_core::HRESULT, pub CapturePropagationContext: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, languageexception: *mut ::core::ffi::c_void) -> ::windows_core::HRESULT, pub GetPropagationContextHead: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, propagatedlanguageexceptionerrorinfohead: *mut *mut ::core::ffi::c_void) -> ::windows_core::HRESULT, } #[repr(transparent)] #[derive(::core::cmp::PartialEq, ::core::cmp::Eq, ::core::fmt::Debug, ::core::clone::Clone)] pub struct IPropertyValue(::windows_core::IUnknown); impl IPropertyValue { pub fn Type(&self) -> ::windows_core::Result { let this = self; unsafe { let mut result__ = ::std::mem::zeroed(); (::windows_core::Interface::vtable(this).Type)(::windows_core::Interface::as_raw(this), &mut result__).from_abi(result__) } } pub fn IsNumericScalar(&self) -> ::windows_core::Result { let this = self; unsafe { let mut result__ = ::std::mem::zeroed(); (::windows_core::Interface::vtable(this).IsNumericScalar)(::windows_core::Interface::as_raw(this), &mut result__).from_abi(result__) } } pub fn GetUInt8(&self) -> ::windows_core::Result { let this = self; unsafe { let mut result__ = ::std::mem::zeroed(); (::windows_core::Interface::vtable(this).GetUInt8)(::windows_core::Interface::as_raw(this), &mut result__).from_abi(result__) } } pub fn GetInt16(&self) -> ::windows_core::Result { let this = self; unsafe { let mut result__ = ::std::mem::zeroed(); (::windows_core::Interface::vtable(this).GetInt16)(::windows_core::Interface::as_raw(this), &mut result__).from_abi(result__) } } pub fn GetUInt16(&self) -> ::windows_core::Result { let this = self; unsafe { let mut result__ = ::std::mem::zeroed(); (::windows_core::Interface::vtable(this).GetUInt16)(::windows_core::Interface::as_raw(this), &mut result__).from_abi(result__) } } pub fn GetInt32(&self) -> ::windows_core::Result { let this = self; unsafe { let mut result__ = ::std::mem::zeroed(); (::windows_core::Interface::vtable(this).GetInt32)(::windows_core::Interface::as_raw(this), &mut result__).from_abi(result__) } } pub fn GetUInt32(&self) -> ::windows_core::Result { let this = self; unsafe { let mut result__ = ::std::mem::zeroed(); (::windows_core::Interface::vtable(this).GetUInt32)(::windows_core::Interface::as_raw(this), &mut result__).from_abi(result__) } } pub fn GetInt64(&self) -> ::windows_core::Result { let this = self; unsafe { let mut result__ = ::std::mem::zeroed(); (::windows_core::Interface::vtable(this).GetInt64)(::windows_core::Interface::as_raw(this), &mut result__).from_abi(result__) } } pub fn GetUInt64(&self) -> ::windows_core::Result { let this = self; unsafe { let mut result__ = ::std::mem::zeroed(); (::windows_core::Interface::vtable(this).GetUInt64)(::windows_core::Interface::as_raw(this), &mut result__).from_abi(result__) } } pub fn GetSingle(&self) -> ::windows_core::Result { let this = self; unsafe { let mut result__ = ::std::mem::zeroed(); (::windows_core::Interface::vtable(this).GetSingle)(::windows_core::Interface::as_raw(this), &mut result__).from_abi(result__) } } pub fn GetDouble(&self) -> ::windows_core::Result { let this = self; unsafe { let mut result__ = ::std::mem::zeroed(); (::windows_core::Interface::vtable(this).GetDouble)(::windows_core::Interface::as_raw(this), &mut result__).from_abi(result__) } } pub fn GetChar16(&self) -> ::windows_core::Result { let this = self; unsafe { let mut result__ = ::std::mem::zeroed(); (::windows_core::Interface::vtable(this).GetChar16)(::windows_core::Interface::as_raw(this), &mut result__).from_abi(result__) } } pub fn GetBoolean(&self) -> ::windows_core::Result { let this = self; unsafe { let mut result__ = ::std::mem::zeroed(); (::windows_core::Interface::vtable(this).GetBoolean)(::windows_core::Interface::as_raw(this), &mut result__).from_abi(result__) } } pub fn GetString(&self) -> ::windows_core::Result<::windows_core::HSTRING> { let this = self; unsafe { let mut result__ = ::std::mem::zeroed(); (::windows_core::Interface::vtable(this).GetString)(::windows_core::Interface::as_raw(this), &mut result__).from_abi(result__) } } pub fn GetGuid(&self) -> ::windows_core::Result<::windows_core::GUID> { let this = self; unsafe { let mut result__ = ::std::mem::zeroed(); (::windows_core::Interface::vtable(this).GetGuid)(::windows_core::Interface::as_raw(this), &mut result__).from_abi(result__) } } pub fn GetDateTime(&self) -> ::windows_core::Result { let this = self; unsafe { let mut result__ = ::std::mem::zeroed(); (::windows_core::Interface::vtable(this).GetDateTime)(::windows_core::Interface::as_raw(this), &mut result__).from_abi(result__) } } pub fn GetTimeSpan(&self) -> ::windows_core::Result { let this = self; unsafe { let mut result__ = ::std::mem::zeroed(); (::windows_core::Interface::vtable(this).GetTimeSpan)(::windows_core::Interface::as_raw(this), &mut result__).from_abi(result__) } } pub fn GetPoint(&self) -> ::windows_core::Result { let this = self; unsafe { let mut result__ = ::std::mem::zeroed(); (::windows_core::Interface::vtable(this).GetPoint)(::windows_core::Interface::as_raw(this), &mut result__).from_abi(result__) } } pub fn GetSize(&self) -> ::windows_core::Result { let this = self; unsafe { let mut result__ = ::std::mem::zeroed(); (::windows_core::Interface::vtable(this).GetSize)(::windows_core::Interface::as_raw(this), &mut result__).from_abi(result__) } } pub fn GetRect(&self) -> ::windows_core::Result { let this = self; unsafe { let mut result__ = ::std::mem::zeroed(); (::windows_core::Interface::vtable(this).GetRect)(::windows_core::Interface::as_raw(this), &mut result__).from_abi(result__) } } pub fn GetUInt8Array(&self, value: &mut ::windows_core::Array) -> ::windows_core::Result<()> { let this = self; unsafe { (::windows_core::Interface::vtable(this).GetUInt8Array)(::windows_core::Interface::as_raw(this), value.set_abi_len(), value as *mut _ as _).ok() } } pub fn GetInt16Array(&self, value: &mut ::windows_core::Array) -> ::windows_core::Result<()> { let this = self; unsafe { (::windows_core::Interface::vtable(this).GetInt16Array)(::windows_core::Interface::as_raw(this), value.set_abi_len(), value as *mut _ as _).ok() } } pub fn GetUInt16Array(&self, value: &mut ::windows_core::Array) -> ::windows_core::Result<()> { let this = self; unsafe { (::windows_core::Interface::vtable(this).GetUInt16Array)(::windows_core::Interface::as_raw(this), value.set_abi_len(), value as *mut _ as _).ok() } } pub fn GetInt32Array(&self, value: &mut ::windows_core::Array) -> ::windows_core::Result<()> { let this = self; unsafe { (::windows_core::Interface::vtable(this).GetInt32Array)(::windows_core::Interface::as_raw(this), value.set_abi_len(), value as *mut _ as _).ok() } } pub fn GetUInt32Array(&self, value: &mut ::windows_core::Array) -> ::windows_core::Result<()> { let this = self; unsafe { (::windows_core::Interface::vtable(this).GetUInt32Array)(::windows_core::Interface::as_raw(this), value.set_abi_len(), value as *mut _ as _).ok() } } pub fn GetInt64Array(&self, value: &mut ::windows_core::Array) -> ::windows_core::Result<()> { let this = self; unsafe { (::windows_core::Interface::vtable(this).GetInt64Array)(::windows_core::Interface::as_raw(this), value.set_abi_len(), value as *mut _ as _).ok() } } pub fn GetUInt64Array(&self, value: &mut ::windows_core::Array) -> ::windows_core::Result<()> { let this = self; unsafe { (::windows_core::Interface::vtable(this).GetUInt64Array)(::windows_core::Interface::as_raw(this), value.set_abi_len(), value as *mut _ as _).ok() } } pub fn GetSingleArray(&self, value: &mut ::windows_core::Array) -> ::windows_core::Result<()> { let this = self; unsafe { (::windows_core::Interface::vtable(this).GetSingleArray)(::windows_core::Interface::as_raw(this), value.set_abi_len(), value as *mut _ as _).ok() } } pub fn GetDoubleArray(&self, value: &mut ::windows_core::Array) -> ::windows_core::Result<()> { let this = self; unsafe { (::windows_core::Interface::vtable(this).GetDoubleArray)(::windows_core::Interface::as_raw(this), value.set_abi_len(), value as *mut _ as _).ok() } } pub fn GetChar16Array(&self, value: &mut ::windows_core::Array) -> ::windows_core::Result<()> { let this = self; unsafe { (::windows_core::Interface::vtable(this).GetChar16Array)(::windows_core::Interface::as_raw(this), value.set_abi_len(), value as *mut _ as _).ok() } } pub fn GetBooleanArray(&self, value: &mut ::windows_core::Array) -> ::windows_core::Result<()> { let this = self; unsafe { (::windows_core::Interface::vtable(this).GetBooleanArray)(::windows_core::Interface::as_raw(this), value.set_abi_len(), value as *mut _ as _).ok() } } pub fn GetStringArray(&self, value: &mut ::windows_core::Array<::windows_core::HSTRING>) -> ::windows_core::Result<()> { let this = self; unsafe { (::windows_core::Interface::vtable(this).GetStringArray)(::windows_core::Interface::as_raw(this), value.set_abi_len(), value as *mut _ as _).ok() } } pub fn GetInspectableArray(&self, value: &mut ::windows_core::Array<::windows_core::IInspectable>) -> ::windows_core::Result<()> { let this = self; unsafe { (::windows_core::Interface::vtable(this).GetInspectableArray)(::windows_core::Interface::as_raw(this), value.set_abi_len(), value as *mut _ as _).ok() } } pub fn GetGuidArray(&self, value: &mut ::windows_core::Array<::windows_core::GUID>) -> ::windows_core::Result<()> { let this = self; unsafe { (::windows_core::Interface::vtable(this).GetGuidArray)(::windows_core::Interface::as_raw(this), value.set_abi_len(), value as *mut _ as _).ok() } } pub fn GetDateTimeArray(&self, value: &mut ::windows_core::Array) -> ::windows_core::Result<()> { let this = self; unsafe { (::windows_core::Interface::vtable(this).GetDateTimeArray)(::windows_core::Interface::as_raw(this), value.set_abi_len(), value as *mut _ as _).ok() } } pub fn GetTimeSpanArray(&self, value: &mut ::windows_core::Array) -> ::windows_core::Result<()> { let this = self; unsafe { (::windows_core::Interface::vtable(this).GetTimeSpanArray)(::windows_core::Interface::as_raw(this), value.set_abi_len(), value as *mut _ as _).ok() } } pub fn GetPointArray(&self, value: &mut ::windows_core::Array) -> ::windows_core::Result<()> { let this = self; unsafe { (::windows_core::Interface::vtable(this).GetPointArray)(::windows_core::Interface::as_raw(this), value.set_abi_len(), value as *mut _ as _).ok() } } pub fn GetSizeArray(&self, value: &mut ::windows_core::Array) -> ::windows_core::Result<()> { let this = self; unsafe { (::windows_core::Interface::vtable(this).GetSizeArray)(::windows_core::Interface::as_raw(this), value.set_abi_len(), value as *mut _ as _).ok() } } pub fn GetRectArray(&self, value: &mut ::windows_core::Array) -> ::windows_core::Result<()> { let this = self; unsafe { (::windows_core::Interface::vtable(this).GetRectArray)(::windows_core::Interface::as_raw(this), value.set_abi_len(), value as *mut _ as _).ok() } } } ::windows_core::imp::interface_hierarchy!(IPropertyValue, ::windows_core::IUnknown, ::windows_core::IInspectable); impl ::windows_core::RuntimeType for IPropertyValue { const SIGNATURE: ::windows_core::imp::ConstBuffer = ::windows_core::imp::ConstBuffer::from_slice(b"{4bd682dd-7554-40e9-9a9b-82654ede7e62}"); } unsafe impl ::windows_core::Interface for IPropertyValue { type Vtable = IPropertyValue_Vtbl; } unsafe impl ::windows_core::ComInterface for IPropertyValue { const IID: ::windows_core::GUID = ::windows_core::GUID::from_u128(0x4bd682dd_7554_40e9_9a9b_82654ede7e62); } #[repr(C)] #[doc(hidden)] pub struct IPropertyValue_Vtbl { pub base__: ::windows_core::IInspectable_Vtbl, pub Type: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, result__: *mut PropertyType) -> ::windows_core::HRESULT, pub IsNumericScalar: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, result__: *mut bool) -> ::windows_core::HRESULT, pub GetUInt8: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, result__: *mut u8) -> ::windows_core::HRESULT, pub GetInt16: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, result__: *mut i16) -> ::windows_core::HRESULT, pub GetUInt16: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, result__: *mut u16) -> ::windows_core::HRESULT, pub GetInt32: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, result__: *mut i32) -> ::windows_core::HRESULT, pub GetUInt32: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, result__: *mut u32) -> ::windows_core::HRESULT, pub GetInt64: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, result__: *mut i64) -> ::windows_core::HRESULT, pub GetUInt64: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, result__: *mut u64) -> ::windows_core::HRESULT, pub GetSingle: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, result__: *mut f32) -> ::windows_core::HRESULT, pub GetDouble: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, result__: *mut f64) -> ::windows_core::HRESULT, pub GetChar16: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, result__: *mut u16) -> ::windows_core::HRESULT, pub GetBoolean: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, result__: *mut bool) -> ::windows_core::HRESULT, pub GetString: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, result__: *mut ::std::mem::MaybeUninit<::windows_core::HSTRING>) -> ::windows_core::HRESULT, pub GetGuid: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, result__: *mut ::windows_core::GUID) -> ::windows_core::HRESULT, pub GetDateTime: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, result__: *mut DateTime) -> ::windows_core::HRESULT, pub GetTimeSpan: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, result__: *mut TimeSpan) -> ::windows_core::HRESULT, pub GetPoint: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, result__: *mut Point) -> ::windows_core::HRESULT, pub GetSize: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, result__: *mut Size) -> ::windows_core::HRESULT, pub GetRect: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, result__: *mut Rect) -> ::windows_core::HRESULT, pub GetUInt8Array: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, value_array_size: *mut u32, value: *mut *mut u8) -> ::windows_core::HRESULT, pub GetInt16Array: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, value_array_size: *mut u32, value: *mut *mut i16) -> ::windows_core::HRESULT, pub GetUInt16Array: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, value_array_size: *mut u32, value: *mut *mut u16) -> ::windows_core::HRESULT, pub GetInt32Array: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, value_array_size: *mut u32, value: *mut *mut i32) -> ::windows_core::HRESULT, pub GetUInt32Array: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, value_array_size: *mut u32, value: *mut *mut u32) -> ::windows_core::HRESULT, pub GetInt64Array: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, value_array_size: *mut u32, value: *mut *mut i64) -> ::windows_core::HRESULT, pub GetUInt64Array: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, value_array_size: *mut u32, value: *mut *mut u64) -> ::windows_core::HRESULT, pub GetSingleArray: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, value_array_size: *mut u32, value: *mut *mut f32) -> ::windows_core::HRESULT, pub GetDoubleArray: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, value_array_size: *mut u32, value: *mut *mut f64) -> ::windows_core::HRESULT, pub GetChar16Array: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, value_array_size: *mut u32, value: *mut *mut u16) -> ::windows_core::HRESULT, pub GetBooleanArray: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, value_array_size: *mut u32, value: *mut *mut bool) -> ::windows_core::HRESULT, pub GetStringArray: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, value_array_size: *mut u32, value: *mut *mut ::std::mem::MaybeUninit<::windows_core::HSTRING>) -> ::windows_core::HRESULT, pub GetInspectableArray: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, value_array_size: *mut u32, value: *mut *mut *mut ::core::ffi::c_void) -> ::windows_core::HRESULT, pub GetGuidArray: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, value_array_size: *mut u32, value: *mut *mut ::windows_core::GUID) -> ::windows_core::HRESULT, pub GetDateTimeArray: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, value_array_size: *mut u32, value: *mut *mut DateTime) -> ::windows_core::HRESULT, pub GetTimeSpanArray: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, value_array_size: *mut u32, value: *mut *mut TimeSpan) -> ::windows_core::HRESULT, pub GetPointArray: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, value_array_size: *mut u32, value: *mut *mut Point) -> ::windows_core::HRESULT, pub GetSizeArray: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, value_array_size: *mut u32, value: *mut *mut Size) -> ::windows_core::HRESULT, pub GetRectArray: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, value_array_size: *mut u32, value: *mut *mut Rect) -> ::windows_core::HRESULT, } #[doc(hidden)] #[repr(transparent)] #[derive(::core::cmp::PartialEq, ::core::cmp::Eq, ::core::fmt::Debug, ::core::clone::Clone)] pub struct IPropertyValueStatics(::windows_core::IUnknown); unsafe impl ::windows_core::Interface for IPropertyValueStatics { type Vtable = IPropertyValueStatics_Vtbl; } unsafe impl ::windows_core::ComInterface for IPropertyValueStatics { const IID: ::windows_core::GUID = ::windows_core::GUID::from_u128(0x629bdbc8_d932_4ff4_96b9_8d96c5c1e858); } #[repr(C)] #[doc(hidden)] pub struct IPropertyValueStatics_Vtbl { pub base__: ::windows_core::IInspectable_Vtbl, pub CreateEmpty: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, result__: *mut *mut ::core::ffi::c_void) -> ::windows_core::HRESULT, pub CreateUInt8: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, value: u8, result__: *mut *mut ::core::ffi::c_void) -> ::windows_core::HRESULT, pub CreateInt16: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, value: i16, result__: *mut *mut ::core::ffi::c_void) -> ::windows_core::HRESULT, pub CreateUInt16: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, value: u16, result__: *mut *mut ::core::ffi::c_void) -> ::windows_core::HRESULT, pub CreateInt32: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, value: i32, result__: *mut *mut ::core::ffi::c_void) -> ::windows_core::HRESULT, pub CreateUInt32: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, value: u32, result__: *mut *mut ::core::ffi::c_void) -> ::windows_core::HRESULT, pub CreateInt64: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, value: i64, result__: *mut *mut ::core::ffi::c_void) -> ::windows_core::HRESULT, pub CreateUInt64: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, value: u64, result__: *mut *mut ::core::ffi::c_void) -> ::windows_core::HRESULT, pub CreateSingle: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, value: f32, result__: *mut *mut ::core::ffi::c_void) -> ::windows_core::HRESULT, pub CreateDouble: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, value: f64, result__: *mut *mut ::core::ffi::c_void) -> ::windows_core::HRESULT, pub CreateChar16: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, value: u16, result__: *mut *mut ::core::ffi::c_void) -> ::windows_core::HRESULT, pub CreateBoolean: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, value: bool, result__: *mut *mut ::core::ffi::c_void) -> ::windows_core::HRESULT, pub CreateString: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, value: ::std::mem::MaybeUninit<::windows_core::HSTRING>, result__: *mut *mut ::core::ffi::c_void) -> ::windows_core::HRESULT, pub CreateInspectable: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, value: *mut ::core::ffi::c_void, result__: *mut *mut ::core::ffi::c_void) -> ::windows_core::HRESULT, pub CreateGuid: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, value: ::windows_core::GUID, result__: *mut *mut ::core::ffi::c_void) -> ::windows_core::HRESULT, pub CreateDateTime: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, value: DateTime, result__: *mut *mut ::core::ffi::c_void) -> ::windows_core::HRESULT, pub CreateTimeSpan: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, value: TimeSpan, result__: *mut *mut ::core::ffi::c_void) -> ::windows_core::HRESULT, pub CreatePoint: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, value: Point, result__: *mut *mut ::core::ffi::c_void) -> ::windows_core::HRESULT, pub CreateSize: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, value: Size, result__: *mut *mut ::core::ffi::c_void) -> ::windows_core::HRESULT, pub CreateRect: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, value: Rect, result__: *mut *mut ::core::ffi::c_void) -> ::windows_core::HRESULT, pub CreateUInt8Array: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, value_array_size: u32, value: *const u8, result__: *mut *mut ::core::ffi::c_void) -> ::windows_core::HRESULT, pub CreateInt16Array: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, value_array_size: u32, value: *const i16, result__: *mut *mut ::core::ffi::c_void) -> ::windows_core::HRESULT, pub CreateUInt16Array: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, value_array_size: u32, value: *const u16, result__: *mut *mut ::core::ffi::c_void) -> ::windows_core::HRESULT, pub CreateInt32Array: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, value_array_size: u32, value: *const i32, result__: *mut *mut ::core::ffi::c_void) -> ::windows_core::HRESULT, pub CreateUInt32Array: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, value_array_size: u32, value: *const u32, result__: *mut *mut ::core::ffi::c_void) -> ::windows_core::HRESULT, pub CreateInt64Array: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, value_array_size: u32, value: *const i64, result__: *mut *mut ::core::ffi::c_void) -> ::windows_core::HRESULT, pub CreateUInt64Array: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, value_array_size: u32, value: *const u64, result__: *mut *mut ::core::ffi::c_void) -> ::windows_core::HRESULT, pub CreateSingleArray: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, value_array_size: u32, value: *const f32, result__: *mut *mut ::core::ffi::c_void) -> ::windows_core::HRESULT, pub CreateDoubleArray: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, value_array_size: u32, value: *const f64, result__: *mut *mut ::core::ffi::c_void) -> ::windows_core::HRESULT, pub CreateChar16Array: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, value_array_size: u32, value: *const u16, result__: *mut *mut ::core::ffi::c_void) -> ::windows_core::HRESULT, pub CreateBooleanArray: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, value_array_size: u32, value: *const bool, result__: *mut *mut ::core::ffi::c_void) -> ::windows_core::HRESULT, pub CreateStringArray: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, value_array_size: u32, value: *const ::std::mem::MaybeUninit<::windows_core::HSTRING>, result__: *mut *mut ::core::ffi::c_void) -> ::windows_core::HRESULT, pub CreateInspectableArray: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, value_array_size: u32, value: *const *mut ::core::ffi::c_void, result__: *mut *mut ::core::ffi::c_void) -> ::windows_core::HRESULT, pub CreateGuidArray: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, value_array_size: u32, value: *const ::windows_core::GUID, result__: *mut *mut ::core::ffi::c_void) -> ::windows_core::HRESULT, pub CreateDateTimeArray: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, value_array_size: u32, value: *const DateTime, result__: *mut *mut ::core::ffi::c_void) -> ::windows_core::HRESULT, pub CreateTimeSpanArray: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, value_array_size: u32, value: *const TimeSpan, result__: *mut *mut ::core::ffi::c_void) -> ::windows_core::HRESULT, pub CreatePointArray: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, value_array_size: u32, value: *const Point, result__: *mut *mut ::core::ffi::c_void) -> ::windows_core::HRESULT, pub CreateSizeArray: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, value_array_size: u32, value: *const Size, result__: *mut *mut ::core::ffi::c_void) -> ::windows_core::HRESULT, pub CreateRectArray: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, value_array_size: u32, value: *const Rect, result__: *mut *mut ::core::ffi::c_void) -> ::windows_core::HRESULT, } #[repr(transparent)] #[derive(::core::cmp::PartialEq, ::core::cmp::Eq, ::core::fmt::Debug, ::core::clone::Clone)] pub struct IReference(::windows_core::IUnknown, ::core::marker::PhantomData) where T: ::windows_core::RuntimeType + 'static; impl IReference { pub fn Value(&self) -> ::windows_core::Result { let this = self; unsafe { let mut result__ = ::std::mem::zeroed(); (::windows_core::Interface::vtable(this).Value)(::windows_core::Interface::as_raw(this), &mut result__).from_abi(result__) } } pub fn Type(&self) -> ::windows_core::Result { let this = &::windows_core::ComInterface::cast::(self)?; unsafe { let mut result__ = ::std::mem::zeroed(); (::windows_core::Interface::vtable(this).Type)(::windows_core::Interface::as_raw(this), &mut result__).from_abi(result__) } } pub fn IsNumericScalar(&self) -> ::windows_core::Result { let this = &::windows_core::ComInterface::cast::(self)?; unsafe { let mut result__ = ::std::mem::zeroed(); (::windows_core::Interface::vtable(this).IsNumericScalar)(::windows_core::Interface::as_raw(this), &mut result__).from_abi(result__) } } pub fn GetUInt8(&self) -> ::windows_core::Result { let this = &::windows_core::ComInterface::cast::(self)?; unsafe { let mut result__ = ::std::mem::zeroed(); (::windows_core::Interface::vtable(this).GetUInt8)(::windows_core::Interface::as_raw(this), &mut result__).from_abi(result__) } } pub fn GetInt16(&self) -> ::windows_core::Result { let this = &::windows_core::ComInterface::cast::(self)?; unsafe { let mut result__ = ::std::mem::zeroed(); (::windows_core::Interface::vtable(this).GetInt16)(::windows_core::Interface::as_raw(this), &mut result__).from_abi(result__) } } pub fn GetUInt16(&self) -> ::windows_core::Result { let this = &::windows_core::ComInterface::cast::(self)?; unsafe { let mut result__ = ::std::mem::zeroed(); (::windows_core::Interface::vtable(this).GetUInt16)(::windows_core::Interface::as_raw(this), &mut result__).from_abi(result__) } } pub fn GetInt32(&self) -> ::windows_core::Result { let this = &::windows_core::ComInterface::cast::(self)?; unsafe { let mut result__ = ::std::mem::zeroed(); (::windows_core::Interface::vtable(this).GetInt32)(::windows_core::Interface::as_raw(this), &mut result__).from_abi(result__) } } pub fn GetUInt32(&self) -> ::windows_core::Result { let this = &::windows_core::ComInterface::cast::(self)?; unsafe { let mut result__ = ::std::mem::zeroed(); (::windows_core::Interface::vtable(this).GetUInt32)(::windows_core::Interface::as_raw(this), &mut result__).from_abi(result__) } } pub fn GetInt64(&self) -> ::windows_core::Result { let this = &::windows_core::ComInterface::cast::(self)?; unsafe { let mut result__ = ::std::mem::zeroed(); (::windows_core::Interface::vtable(this).GetInt64)(::windows_core::Interface::as_raw(this), &mut result__).from_abi(result__) } } pub fn GetUInt64(&self) -> ::windows_core::Result { let this = &::windows_core::ComInterface::cast::(self)?; unsafe { let mut result__ = ::std::mem::zeroed(); (::windows_core::Interface::vtable(this).GetUInt64)(::windows_core::Interface::as_raw(this), &mut result__).from_abi(result__) } } pub fn GetSingle(&self) -> ::windows_core::Result { let this = &::windows_core::ComInterface::cast::(self)?; unsafe { let mut result__ = ::std::mem::zeroed(); (::windows_core::Interface::vtable(this).GetSingle)(::windows_core::Interface::as_raw(this), &mut result__).from_abi(result__) } } pub fn GetDouble(&self) -> ::windows_core::Result { let this = &::windows_core::ComInterface::cast::(self)?; unsafe { let mut result__ = ::std::mem::zeroed(); (::windows_core::Interface::vtable(this).GetDouble)(::windows_core::Interface::as_raw(this), &mut result__).from_abi(result__) } } pub fn GetChar16(&self) -> ::windows_core::Result { let this = &::windows_core::ComInterface::cast::(self)?; unsafe { let mut result__ = ::std::mem::zeroed(); (::windows_core::Interface::vtable(this).GetChar16)(::windows_core::Interface::as_raw(this), &mut result__).from_abi(result__) } } pub fn GetBoolean(&self) -> ::windows_core::Result { let this = &::windows_core::ComInterface::cast::(self)?; unsafe { let mut result__ = ::std::mem::zeroed(); (::windows_core::Interface::vtable(this).GetBoolean)(::windows_core::Interface::as_raw(this), &mut result__).from_abi(result__) } } pub fn GetString(&self) -> ::windows_core::Result<::windows_core::HSTRING> { let this = &::windows_core::ComInterface::cast::(self)?; unsafe { let mut result__ = ::std::mem::zeroed(); (::windows_core::Interface::vtable(this).GetString)(::windows_core::Interface::as_raw(this), &mut result__).from_abi(result__) } } pub fn GetGuid(&self) -> ::windows_core::Result<::windows_core::GUID> { let this = &::windows_core::ComInterface::cast::(self)?; unsafe { let mut result__ = ::std::mem::zeroed(); (::windows_core::Interface::vtable(this).GetGuid)(::windows_core::Interface::as_raw(this), &mut result__).from_abi(result__) } } pub fn GetDateTime(&self) -> ::windows_core::Result { let this = &::windows_core::ComInterface::cast::(self)?; unsafe { let mut result__ = ::std::mem::zeroed(); (::windows_core::Interface::vtable(this).GetDateTime)(::windows_core::Interface::as_raw(this), &mut result__).from_abi(result__) } } pub fn GetTimeSpan(&self) -> ::windows_core::Result { let this = &::windows_core::ComInterface::cast::(self)?; unsafe { let mut result__ = ::std::mem::zeroed(); (::windows_core::Interface::vtable(this).GetTimeSpan)(::windows_core::Interface::as_raw(this), &mut result__).from_abi(result__) } } pub fn GetPoint(&self) -> ::windows_core::Result { let this = &::windows_core::ComInterface::cast::(self)?; unsafe { let mut result__ = ::std::mem::zeroed(); (::windows_core::Interface::vtable(this).GetPoint)(::windows_core::Interface::as_raw(this), &mut result__).from_abi(result__) } } pub fn GetSize(&self) -> ::windows_core::Result { let this = &::windows_core::ComInterface::cast::(self)?; unsafe { let mut result__ = ::std::mem::zeroed(); (::windows_core::Interface::vtable(this).GetSize)(::windows_core::Interface::as_raw(this), &mut result__).from_abi(result__) } } pub fn GetRect(&self) -> ::windows_core::Result { let this = &::windows_core::ComInterface::cast::(self)?; unsafe { let mut result__ = ::std::mem::zeroed(); (::windows_core::Interface::vtable(this).GetRect)(::windows_core::Interface::as_raw(this), &mut result__).from_abi(result__) } } pub fn GetUInt8Array(&self, value: &mut ::windows_core::Array) -> ::windows_core::Result<()> { let this = &::windows_core::ComInterface::cast::(self)?; unsafe { (::windows_core::Interface::vtable(this).GetUInt8Array)(::windows_core::Interface::as_raw(this), value.set_abi_len(), value as *mut _ as _).ok() } } pub fn GetInt16Array(&self, value: &mut ::windows_core::Array) -> ::windows_core::Result<()> { let this = &::windows_core::ComInterface::cast::(self)?; unsafe { (::windows_core::Interface::vtable(this).GetInt16Array)(::windows_core::Interface::as_raw(this), value.set_abi_len(), value as *mut _ as _).ok() } } pub fn GetUInt16Array(&self, value: &mut ::windows_core::Array) -> ::windows_core::Result<()> { let this = &::windows_core::ComInterface::cast::(self)?; unsafe { (::windows_core::Interface::vtable(this).GetUInt16Array)(::windows_core::Interface::as_raw(this), value.set_abi_len(), value as *mut _ as _).ok() } } pub fn GetInt32Array(&self, value: &mut ::windows_core::Array) -> ::windows_core::Result<()> { let this = &::windows_core::ComInterface::cast::(self)?; unsafe { (::windows_core::Interface::vtable(this).GetInt32Array)(::windows_core::Interface::as_raw(this), value.set_abi_len(), value as *mut _ as _).ok() } } pub fn GetUInt32Array(&self, value: &mut ::windows_core::Array) -> ::windows_core::Result<()> { let this = &::windows_core::ComInterface::cast::(self)?; unsafe { (::windows_core::Interface::vtable(this).GetUInt32Array)(::windows_core::Interface::as_raw(this), value.set_abi_len(), value as *mut _ as _).ok() } } pub fn GetInt64Array(&self, value: &mut ::windows_core::Array) -> ::windows_core::Result<()> { let this = &::windows_core::ComInterface::cast::(self)?; unsafe { (::windows_core::Interface::vtable(this).GetInt64Array)(::windows_core::Interface::as_raw(this), value.set_abi_len(), value as *mut _ as _).ok() } } pub fn GetUInt64Array(&self, value: &mut ::windows_core::Array) -> ::windows_core::Result<()> { let this = &::windows_core::ComInterface::cast::(self)?; unsafe { (::windows_core::Interface::vtable(this).GetUInt64Array)(::windows_core::Interface::as_raw(this), value.set_abi_len(), value as *mut _ as _).ok() } } pub fn GetSingleArray(&self, value: &mut ::windows_core::Array) -> ::windows_core::Result<()> { let this = &::windows_core::ComInterface::cast::(self)?; unsafe { (::windows_core::Interface::vtable(this).GetSingleArray)(::windows_core::Interface::as_raw(this), value.set_abi_len(), value as *mut _ as _).ok() } } pub fn GetDoubleArray(&self, value: &mut ::windows_core::Array) -> ::windows_core::Result<()> { let this = &::windows_core::ComInterface::cast::(self)?; unsafe { (::windows_core::Interface::vtable(this).GetDoubleArray)(::windows_core::Interface::as_raw(this), value.set_abi_len(), value as *mut _ as _).ok() } } pub fn GetChar16Array(&self, value: &mut ::windows_core::Array) -> ::windows_core::Result<()> { let this = &::windows_core::ComInterface::cast::(self)?; unsafe { (::windows_core::Interface::vtable(this).GetChar16Array)(::windows_core::Interface::as_raw(this), value.set_abi_len(), value as *mut _ as _).ok() } } pub fn GetBooleanArray(&self, value: &mut ::windows_core::Array) -> ::windows_core::Result<()> { let this = &::windows_core::ComInterface::cast::(self)?; unsafe { (::windows_core::Interface::vtable(this).GetBooleanArray)(::windows_core::Interface::as_raw(this), value.set_abi_len(), value as *mut _ as _).ok() } } pub fn GetStringArray(&self, value: &mut ::windows_core::Array<::windows_core::HSTRING>) -> ::windows_core::Result<()> { let this = &::windows_core::ComInterface::cast::(self)?; unsafe { (::windows_core::Interface::vtable(this).GetStringArray)(::windows_core::Interface::as_raw(this), value.set_abi_len(), value as *mut _ as _).ok() } } pub fn GetInspectableArray(&self, value: &mut ::windows_core::Array<::windows_core::IInspectable>) -> ::windows_core::Result<()> { let this = &::windows_core::ComInterface::cast::(self)?; unsafe { (::windows_core::Interface::vtable(this).GetInspectableArray)(::windows_core::Interface::as_raw(this), value.set_abi_len(), value as *mut _ as _).ok() } } pub fn GetGuidArray(&self, value: &mut ::windows_core::Array<::windows_core::GUID>) -> ::windows_core::Result<()> { let this = &::windows_core::ComInterface::cast::(self)?; unsafe { (::windows_core::Interface::vtable(this).GetGuidArray)(::windows_core::Interface::as_raw(this), value.set_abi_len(), value as *mut _ as _).ok() } } pub fn GetDateTimeArray(&self, value: &mut ::windows_core::Array) -> ::windows_core::Result<()> { let this = &::windows_core::ComInterface::cast::(self)?; unsafe { (::windows_core::Interface::vtable(this).GetDateTimeArray)(::windows_core::Interface::as_raw(this), value.set_abi_len(), value as *mut _ as _).ok() } } pub fn GetTimeSpanArray(&self, value: &mut ::windows_core::Array) -> ::windows_core::Result<()> { let this = &::windows_core::ComInterface::cast::(self)?; unsafe { (::windows_core::Interface::vtable(this).GetTimeSpanArray)(::windows_core::Interface::as_raw(this), value.set_abi_len(), value as *mut _ as _).ok() } } pub fn GetPointArray(&self, value: &mut ::windows_core::Array) -> ::windows_core::Result<()> { let this = &::windows_core::ComInterface::cast::(self)?; unsafe { (::windows_core::Interface::vtable(this).GetPointArray)(::windows_core::Interface::as_raw(this), value.set_abi_len(), value as *mut _ as _).ok() } } pub fn GetSizeArray(&self, value: &mut ::windows_core::Array) -> ::windows_core::Result<()> { let this = &::windows_core::ComInterface::cast::(self)?; unsafe { (::windows_core::Interface::vtable(this).GetSizeArray)(::windows_core::Interface::as_raw(this), value.set_abi_len(), value as *mut _ as _).ok() } } pub fn GetRectArray(&self, value: &mut ::windows_core::Array) -> ::windows_core::Result<()> { let this = &::windows_core::ComInterface::cast::(self)?; unsafe { (::windows_core::Interface::vtable(this).GetRectArray)(::windows_core::Interface::as_raw(this), value.set_abi_len(), value as *mut _ as _).ok() } } } impl ::windows_core::CanInto<::windows_core::IUnknown> for IReference {} impl ::windows_core::CanInto<::windows_core::IInspectable> for IReference {} impl ::windows_core::CanTryInto for IReference {} impl ::windows_core::RuntimeType for IReference { const SIGNATURE: ::windows_core::imp::ConstBuffer = { ::windows_core::imp::ConstBuffer::new().push_slice(b"pinterface(").push_slice(b"{61c17706-2d65-11e0-9ae8-d48564015472}").push_slice(b";").push_other(::SIGNATURE).push_slice(b")") }; } unsafe impl ::windows_core::Interface for IReference { type Vtable = IReference_Vtbl; } unsafe impl ::windows_core::ComInterface for IReference { const IID: ::windows_core::GUID = ::windows_core::GUID::from_signature(::SIGNATURE); } #[repr(C)] #[doc(hidden)] pub struct IReference_Vtbl where T: ::windows_core::RuntimeType + 'static, { pub base__: ::windows_core::IInspectable_Vtbl, pub Value: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, result__: *mut ::windows_core::AbiType) -> ::windows_core::HRESULT, pub T: ::core::marker::PhantomData, } #[repr(transparent)] #[derive(::core::cmp::PartialEq, ::core::cmp::Eq, ::core::fmt::Debug, ::core::clone::Clone)] pub struct IRestrictedErrorInfo(::windows_core::IUnknown); impl IRestrictedErrorInfo { pub unsafe fn GetErrorDetails(&self, description: *mut ::windows_core::BSTR, error: *mut ::windows_core::HRESULT, restricteddescription: *mut ::windows_core::BSTR, capabilitysid: *mut ::windows_core::BSTR) -> ::windows_core::Result<()> { (::windows_core::Interface::vtable(self).GetErrorDetails)(::windows_core::Interface::as_raw(self), ::core::mem::transmute(description), error, ::core::mem::transmute(restricteddescription), ::core::mem::transmute(capabilitysid)).ok() } pub unsafe fn GetReference(&self) -> ::windows_core::Result<::windows_core::BSTR> { let mut result__ = ::std::mem::zeroed(); (::windows_core::Interface::vtable(self).GetReference)(::windows_core::Interface::as_raw(self), &mut result__).from_abi(result__) } } ::windows_core::imp::interface_hierarchy!(IRestrictedErrorInfo, ::windows_core::IUnknown); unsafe impl ::core::marker::Send for IRestrictedErrorInfo {} unsafe impl ::core::marker::Sync for IRestrictedErrorInfo {} unsafe impl ::windows_core::Interface for IRestrictedErrorInfo { type Vtable = IRestrictedErrorInfo_Vtbl; } unsafe impl ::windows_core::ComInterface for IRestrictedErrorInfo { const IID: ::windows_core::GUID = ::windows_core::GUID::from_u128(0x82ba7092_4c88_427d_a7bc_16dd93feb67e); } #[repr(C)] #[doc(hidden)] pub struct IRestrictedErrorInfo_Vtbl { pub base__: ::windows_core::IUnknown_Vtbl, pub GetErrorDetails: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, description: *mut ::std::mem::MaybeUninit<::windows_core::BSTR>, error: *mut ::windows_core::HRESULT, restricteddescription: *mut ::std::mem::MaybeUninit<::windows_core::BSTR>, capabilitysid: *mut ::std::mem::MaybeUninit<::windows_core::BSTR>) -> ::windows_core::HRESULT, pub GetReference: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, reference: *mut ::std::mem::MaybeUninit<::windows_core::BSTR>) -> ::windows_core::HRESULT, } #[repr(transparent)] #[derive(::core::cmp::PartialEq, ::core::cmp::Eq, ::core::fmt::Debug, ::core::clone::Clone)] pub struct IStringable(::windows_core::IUnknown); impl IStringable { pub fn ToString(&self) -> ::windows_core::Result<::windows_core::HSTRING> { let this = self; unsafe { let mut result__ = ::std::mem::zeroed(); (::windows_core::Interface::vtable(this).ToString)(::windows_core::Interface::as_raw(this), &mut result__).from_abi(result__) } } } ::windows_core::imp::interface_hierarchy!(IStringable, ::windows_core::IUnknown, ::windows_core::IInspectable); impl ::windows_core::RuntimeType for IStringable { const SIGNATURE: ::windows_core::imp::ConstBuffer = ::windows_core::imp::ConstBuffer::from_slice(b"{96369f54-8eb6-48f0-abce-c1b211e627c3}"); } unsafe impl ::windows_core::Interface for IStringable { type Vtable = IStringable_Vtbl; } unsafe impl ::windows_core::ComInterface for IStringable { const IID: ::windows_core::GUID = ::windows_core::GUID::from_u128(0x96369f54_8eb6_48f0_abce_c1b211e627c3); } #[repr(C)] #[doc(hidden)] pub struct IStringable_Vtbl { pub base__: ::windows_core::IInspectable_Vtbl, pub ToString: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, result__: *mut ::std::mem::MaybeUninit<::windows_core::HSTRING>) -> ::windows_core::HRESULT, } #[repr(transparent)] #[derive(::core::cmp::PartialEq, ::core::cmp::Eq, ::core::fmt::Debug, ::core::clone::Clone)] pub struct IWeakReference(::windows_core::IUnknown); impl IWeakReference { pub unsafe fn Resolve(&self) -> ::windows_core::Result where T: ::windows_core::ComInterface, { let mut result__ = ::std::ptr::null_mut(); (::windows_core::Interface::vtable(self).Resolve)(::windows_core::Interface::as_raw(self), &::IID, &mut result__).from_abi(result__) } } ::windows_core::imp::interface_hierarchy!(IWeakReference, ::windows_core::IUnknown); unsafe impl ::windows_core::Interface for IWeakReference { type Vtable = IWeakReference_Vtbl; } unsafe impl ::windows_core::ComInterface for IWeakReference { const IID: ::windows_core::GUID = ::windows_core::GUID::from_u128(0x00000037_0000_0000_c000_000000000046); } #[repr(C)] #[doc(hidden)] pub struct IWeakReference_Vtbl { pub base__: ::windows_core::IUnknown_Vtbl, pub Resolve: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, riid: *const ::windows_core::GUID, objectreference: *mut *mut ::core::ffi::c_void) -> ::windows_core::HRESULT, } #[repr(transparent)] #[derive(::core::cmp::PartialEq, ::core::cmp::Eq, ::core::fmt::Debug, ::core::clone::Clone)] pub struct IWeakReferenceSource(::windows_core::IUnknown); impl IWeakReferenceSource { pub unsafe fn GetWeakReference(&self) -> ::windows_core::Result { let mut result__ = ::std::mem::zeroed(); (::windows_core::Interface::vtable(self).GetWeakReference)(::windows_core::Interface::as_raw(self), &mut result__).from_abi(result__) } } ::windows_core::imp::interface_hierarchy!(IWeakReferenceSource, ::windows_core::IUnknown); unsafe impl ::windows_core::Interface for IWeakReferenceSource { type Vtable = IWeakReferenceSource_Vtbl; } unsafe impl ::windows_core::ComInterface for IWeakReferenceSource { const IID: ::windows_core::GUID = ::windows_core::GUID::from_u128(0x00000038_0000_0000_c000_000000000046); } #[repr(C)] #[doc(hidden)] pub struct IWeakReferenceSource_Vtbl { pub base__: ::windows_core::IUnknown_Vtbl, pub GetWeakReference: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, weakreference: *mut *mut ::core::ffi::c_void) -> ::windows_core::HRESULT, } pub const JSCRIPT_E_CANTEXECUTE: ::windows_core::HRESULT = ::windows_core::HRESULT(-1996357631i32); #[repr(C)] pub struct Point { pub X: f32, pub Y: f32, } impl ::core::marker::Copy for Point {} impl ::core::clone::Clone for Point { fn clone(&self) -> Self { *self } } impl ::core::fmt::Debug for Point { fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Point").field("X", &self.X).field("Y", &self.Y).finish() } } impl ::windows_core::TypeKind for Point { type TypeKind = ::windows_core::CopyType; } impl ::windows_core::RuntimeType for Point { const SIGNATURE: ::windows_core::imp::ConstBuffer = ::windows_core::imp::ConstBuffer::from_slice(b"struct(Windows.Foundation.Point;f4;f4)"); } impl ::core::cmp::PartialEq for Point { fn eq(&self, other: &Self) -> bool { self.X == other.X && self.Y == other.Y } } impl ::core::cmp::Eq for Point {} impl ::core::default::Default for Point { fn default() -> Self { unsafe { ::core::mem::zeroed() } } } #[repr(transparent)] #[derive(::core::cmp::PartialEq, ::core::cmp::Eq)] pub struct PropertyType(pub i32); impl PropertyType { pub const Empty: Self = Self(0i32); pub const UInt8: Self = Self(1i32); pub const Int16: Self = Self(2i32); pub const UInt16: Self = Self(3i32); pub const Int32: Self = Self(4i32); pub const UInt32: Self = Self(5i32); pub const Int64: Self = Self(6i32); pub const UInt64: Self = Self(7i32); pub const Single: Self = Self(8i32); pub const Double: Self = Self(9i32); pub const Char16: Self = Self(10i32); pub const Boolean: Self = Self(11i32); pub const String: Self = Self(12i32); pub const Inspectable: Self = Self(13i32); pub const DateTime: Self = Self(14i32); pub const TimeSpan: Self = Self(15i32); pub const Guid: Self = Self(16i32); pub const Point: Self = Self(17i32); pub const Size: Self = Self(18i32); pub const Rect: Self = Self(19i32); pub const OtherType: Self = Self(20i32); pub const UInt8Array: Self = Self(1025i32); pub const Int16Array: Self = Self(1026i32); pub const UInt16Array: Self = Self(1027i32); pub const Int32Array: Self = Self(1028i32); pub const UInt32Array: Self = Self(1029i32); pub const Int64Array: Self = Self(1030i32); pub const UInt64Array: Self = Self(1031i32); pub const SingleArray: Self = Self(1032i32); pub const DoubleArray: Self = Self(1033i32); pub const Char16Array: Self = Self(1034i32); pub const BooleanArray: Self = Self(1035i32); pub const StringArray: Self = Self(1036i32); pub const InspectableArray: Self = Self(1037i32); pub const DateTimeArray: Self = Self(1038i32); pub const TimeSpanArray: Self = Self(1039i32); pub const GuidArray: Self = Self(1040i32); pub const PointArray: Self = Self(1041i32); pub const SizeArray: Self = Self(1042i32); pub const RectArray: Self = Self(1043i32); pub const OtherTypeArray: Self = Self(1044i32); } impl ::core::marker::Copy for PropertyType {} impl ::core::clone::Clone for PropertyType { fn clone(&self) -> Self { *self } } impl ::core::default::Default for PropertyType { fn default() -> Self { Self(0) } } impl ::windows_core::TypeKind for PropertyType { type TypeKind = ::windows_core::CopyType; } impl ::core::fmt::Debug for PropertyType { fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_tuple("PropertyType").field(&self.0).finish() } } impl ::windows_core::RuntimeType for PropertyType { const SIGNATURE: ::windows_core::imp::ConstBuffer = ::windows_core::imp::ConstBuffer::from_slice(b"enum(Windows.Foundation.PropertyType;i4)"); } pub struct PropertyValue; impl PropertyValue { pub fn CreateEmpty() -> ::windows_core::Result<::windows_core::IInspectable> { Self::IPropertyValueStatics(|this| unsafe { let mut result__ = ::std::mem::zeroed(); (::windows_core::Interface::vtable(this).CreateEmpty)(::windows_core::Interface::as_raw(this), &mut result__).from_abi(result__) }) } pub fn CreateUInt8(value: u8) -> ::windows_core::Result<::windows_core::IInspectable> { Self::IPropertyValueStatics(|this| unsafe { let mut result__ = ::std::mem::zeroed(); (::windows_core::Interface::vtable(this).CreateUInt8)(::windows_core::Interface::as_raw(this), value, &mut result__).from_abi(result__) }) } pub fn CreateInt16(value: i16) -> ::windows_core::Result<::windows_core::IInspectable> { Self::IPropertyValueStatics(|this| unsafe { let mut result__ = ::std::mem::zeroed(); (::windows_core::Interface::vtable(this).CreateInt16)(::windows_core::Interface::as_raw(this), value, &mut result__).from_abi(result__) }) } pub fn CreateUInt16(value: u16) -> ::windows_core::Result<::windows_core::IInspectable> { Self::IPropertyValueStatics(|this| unsafe { let mut result__ = ::std::mem::zeroed(); (::windows_core::Interface::vtable(this).CreateUInt16)(::windows_core::Interface::as_raw(this), value, &mut result__).from_abi(result__) }) } pub fn CreateInt32(value: i32) -> ::windows_core::Result<::windows_core::IInspectable> { Self::IPropertyValueStatics(|this| unsafe { let mut result__ = ::std::mem::zeroed(); (::windows_core::Interface::vtable(this).CreateInt32)(::windows_core::Interface::as_raw(this), value, &mut result__).from_abi(result__) }) } pub fn CreateUInt32(value: u32) -> ::windows_core::Result<::windows_core::IInspectable> { Self::IPropertyValueStatics(|this| unsafe { let mut result__ = ::std::mem::zeroed(); (::windows_core::Interface::vtable(this).CreateUInt32)(::windows_core::Interface::as_raw(this), value, &mut result__).from_abi(result__) }) } pub fn CreateInt64(value: i64) -> ::windows_core::Result<::windows_core::IInspectable> { Self::IPropertyValueStatics(|this| unsafe { let mut result__ = ::std::mem::zeroed(); (::windows_core::Interface::vtable(this).CreateInt64)(::windows_core::Interface::as_raw(this), value, &mut result__).from_abi(result__) }) } pub fn CreateUInt64(value: u64) -> ::windows_core::Result<::windows_core::IInspectable> { Self::IPropertyValueStatics(|this| unsafe { let mut result__ = ::std::mem::zeroed(); (::windows_core::Interface::vtable(this).CreateUInt64)(::windows_core::Interface::as_raw(this), value, &mut result__).from_abi(result__) }) } pub fn CreateSingle(value: f32) -> ::windows_core::Result<::windows_core::IInspectable> { Self::IPropertyValueStatics(|this| unsafe { let mut result__ = ::std::mem::zeroed(); (::windows_core::Interface::vtable(this).CreateSingle)(::windows_core::Interface::as_raw(this), value, &mut result__).from_abi(result__) }) } pub fn CreateDouble(value: f64) -> ::windows_core::Result<::windows_core::IInspectable> { Self::IPropertyValueStatics(|this| unsafe { let mut result__ = ::std::mem::zeroed(); (::windows_core::Interface::vtable(this).CreateDouble)(::windows_core::Interface::as_raw(this), value, &mut result__).from_abi(result__) }) } pub fn CreateChar16(value: u16) -> ::windows_core::Result<::windows_core::IInspectable> { Self::IPropertyValueStatics(|this| unsafe { let mut result__ = ::std::mem::zeroed(); (::windows_core::Interface::vtable(this).CreateChar16)(::windows_core::Interface::as_raw(this), value, &mut result__).from_abi(result__) }) } pub fn CreateBoolean(value: bool) -> ::windows_core::Result<::windows_core::IInspectable> { Self::IPropertyValueStatics(|this| unsafe { let mut result__ = ::std::mem::zeroed(); (::windows_core::Interface::vtable(this).CreateBoolean)(::windows_core::Interface::as_raw(this), value, &mut result__).from_abi(result__) }) } pub fn CreateString(value: &::windows_core::HSTRING) -> ::windows_core::Result<::windows_core::IInspectable> { Self::IPropertyValueStatics(|this| unsafe { let mut result__ = ::std::mem::zeroed(); (::windows_core::Interface::vtable(this).CreateString)(::windows_core::Interface::as_raw(this), ::core::mem::transmute_copy(value), &mut result__).from_abi(result__) }) } pub fn CreateInspectable(value: P0) -> ::windows_core::Result<::windows_core::IInspectable> where P0: ::windows_core::IntoParam<::windows_core::IInspectable>, { Self::IPropertyValueStatics(|this| unsafe { let mut result__ = ::std::mem::zeroed(); (::windows_core::Interface::vtable(this).CreateInspectable)(::windows_core::Interface::as_raw(this), value.into_param().abi(), &mut result__).from_abi(result__) }) } pub fn CreateGuid(value: ::windows_core::GUID) -> ::windows_core::Result<::windows_core::IInspectable> { Self::IPropertyValueStatics(|this| unsafe { let mut result__ = ::std::mem::zeroed(); (::windows_core::Interface::vtable(this).CreateGuid)(::windows_core::Interface::as_raw(this), value, &mut result__).from_abi(result__) }) } pub fn CreateDateTime(value: DateTime) -> ::windows_core::Result<::windows_core::IInspectable> { Self::IPropertyValueStatics(|this| unsafe { let mut result__ = ::std::mem::zeroed(); (::windows_core::Interface::vtable(this).CreateDateTime)(::windows_core::Interface::as_raw(this), value, &mut result__).from_abi(result__) }) } pub fn CreateTimeSpan(value: TimeSpan) -> ::windows_core::Result<::windows_core::IInspectable> { Self::IPropertyValueStatics(|this| unsafe { let mut result__ = ::std::mem::zeroed(); (::windows_core::Interface::vtable(this).CreateTimeSpan)(::windows_core::Interface::as_raw(this), value, &mut result__).from_abi(result__) }) } pub fn CreatePoint(value: Point) -> ::windows_core::Result<::windows_core::IInspectable> { Self::IPropertyValueStatics(|this| unsafe { let mut result__ = ::std::mem::zeroed(); (::windows_core::Interface::vtable(this).CreatePoint)(::windows_core::Interface::as_raw(this), value, &mut result__).from_abi(result__) }) } pub fn CreateSize(value: Size) -> ::windows_core::Result<::windows_core::IInspectable> { Self::IPropertyValueStatics(|this| unsafe { let mut result__ = ::std::mem::zeroed(); (::windows_core::Interface::vtable(this).CreateSize)(::windows_core::Interface::as_raw(this), value, &mut result__).from_abi(result__) }) } pub fn CreateRect(value: Rect) -> ::windows_core::Result<::windows_core::IInspectable> { Self::IPropertyValueStatics(|this| unsafe { let mut result__ = ::std::mem::zeroed(); (::windows_core::Interface::vtable(this).CreateRect)(::windows_core::Interface::as_raw(this), value, &mut result__).from_abi(result__) }) } pub fn CreateUInt8Array(value: &[u8]) -> ::windows_core::Result<::windows_core::IInspectable> { Self::IPropertyValueStatics(|this| unsafe { let mut result__ = ::std::mem::zeroed(); (::windows_core::Interface::vtable(this).CreateUInt8Array)(::windows_core::Interface::as_raw(this), value.len().try_into().unwrap(), value.as_ptr(), &mut result__).from_abi(result__) }) } pub fn CreateInt16Array(value: &[i16]) -> ::windows_core::Result<::windows_core::IInspectable> { Self::IPropertyValueStatics(|this| unsafe { let mut result__ = ::std::mem::zeroed(); (::windows_core::Interface::vtable(this).CreateInt16Array)(::windows_core::Interface::as_raw(this), value.len().try_into().unwrap(), value.as_ptr(), &mut result__).from_abi(result__) }) } pub fn CreateUInt16Array(value: &[u16]) -> ::windows_core::Result<::windows_core::IInspectable> { Self::IPropertyValueStatics(|this| unsafe { let mut result__ = ::std::mem::zeroed(); (::windows_core::Interface::vtable(this).CreateUInt16Array)(::windows_core::Interface::as_raw(this), value.len().try_into().unwrap(), value.as_ptr(), &mut result__).from_abi(result__) }) } pub fn CreateInt32Array(value: &[i32]) -> ::windows_core::Result<::windows_core::IInspectable> { Self::IPropertyValueStatics(|this| unsafe { let mut result__ = ::std::mem::zeroed(); (::windows_core::Interface::vtable(this).CreateInt32Array)(::windows_core::Interface::as_raw(this), value.len().try_into().unwrap(), value.as_ptr(), &mut result__).from_abi(result__) }) } pub fn CreateUInt32Array(value: &[u32]) -> ::windows_core::Result<::windows_core::IInspectable> { Self::IPropertyValueStatics(|this| unsafe { let mut result__ = ::std::mem::zeroed(); (::windows_core::Interface::vtable(this).CreateUInt32Array)(::windows_core::Interface::as_raw(this), value.len().try_into().unwrap(), value.as_ptr(), &mut result__).from_abi(result__) }) } pub fn CreateInt64Array(value: &[i64]) -> ::windows_core::Result<::windows_core::IInspectable> { Self::IPropertyValueStatics(|this| unsafe { let mut result__ = ::std::mem::zeroed(); (::windows_core::Interface::vtable(this).CreateInt64Array)(::windows_core::Interface::as_raw(this), value.len().try_into().unwrap(), value.as_ptr(), &mut result__).from_abi(result__) }) } pub fn CreateUInt64Array(value: &[u64]) -> ::windows_core::Result<::windows_core::IInspectable> { Self::IPropertyValueStatics(|this| unsafe { let mut result__ = ::std::mem::zeroed(); (::windows_core::Interface::vtable(this).CreateUInt64Array)(::windows_core::Interface::as_raw(this), value.len().try_into().unwrap(), value.as_ptr(), &mut result__).from_abi(result__) }) } pub fn CreateSingleArray(value: &[f32]) -> ::windows_core::Result<::windows_core::IInspectable> { Self::IPropertyValueStatics(|this| unsafe { let mut result__ = ::std::mem::zeroed(); (::windows_core::Interface::vtable(this).CreateSingleArray)(::windows_core::Interface::as_raw(this), value.len().try_into().unwrap(), value.as_ptr(), &mut result__).from_abi(result__) }) } pub fn CreateDoubleArray(value: &[f64]) -> ::windows_core::Result<::windows_core::IInspectable> { Self::IPropertyValueStatics(|this| unsafe { let mut result__ = ::std::mem::zeroed(); (::windows_core::Interface::vtable(this).CreateDoubleArray)(::windows_core::Interface::as_raw(this), value.len().try_into().unwrap(), value.as_ptr(), &mut result__).from_abi(result__) }) } pub fn CreateChar16Array(value: &[u16]) -> ::windows_core::Result<::windows_core::IInspectable> { Self::IPropertyValueStatics(|this| unsafe { let mut result__ = ::std::mem::zeroed(); (::windows_core::Interface::vtable(this).CreateChar16Array)(::windows_core::Interface::as_raw(this), value.len().try_into().unwrap(), value.as_ptr(), &mut result__).from_abi(result__) }) } pub fn CreateBooleanArray(value: &[bool]) -> ::windows_core::Result<::windows_core::IInspectable> { Self::IPropertyValueStatics(|this| unsafe { let mut result__ = ::std::mem::zeroed(); (::windows_core::Interface::vtable(this).CreateBooleanArray)(::windows_core::Interface::as_raw(this), value.len().try_into().unwrap(), value.as_ptr(), &mut result__).from_abi(result__) }) } pub fn CreateStringArray(value: &[::windows_core::HSTRING]) -> ::windows_core::Result<::windows_core::IInspectable> { Self::IPropertyValueStatics(|this| unsafe { let mut result__ = ::std::mem::zeroed(); (::windows_core::Interface::vtable(this).CreateStringArray)(::windows_core::Interface::as_raw(this), value.len().try_into().unwrap(), ::core::mem::transmute(value.as_ptr()), &mut result__).from_abi(result__) }) } pub fn CreateInspectableArray(value: &[::core::option::Option<::windows_core::IInspectable>]) -> ::windows_core::Result<::windows_core::IInspectable> { Self::IPropertyValueStatics(|this| unsafe { let mut result__ = ::std::mem::zeroed(); (::windows_core::Interface::vtable(this).CreateInspectableArray)(::windows_core::Interface::as_raw(this), value.len().try_into().unwrap(), ::core::mem::transmute(value.as_ptr()), &mut result__).from_abi(result__) }) } pub fn CreateGuidArray(value: &[::windows_core::GUID]) -> ::windows_core::Result<::windows_core::IInspectable> { Self::IPropertyValueStatics(|this| unsafe { let mut result__ = ::std::mem::zeroed(); (::windows_core::Interface::vtable(this).CreateGuidArray)(::windows_core::Interface::as_raw(this), value.len().try_into().unwrap(), value.as_ptr(), &mut result__).from_abi(result__) }) } pub fn CreateDateTimeArray(value: &[DateTime]) -> ::windows_core::Result<::windows_core::IInspectable> { Self::IPropertyValueStatics(|this| unsafe { let mut result__ = ::std::mem::zeroed(); (::windows_core::Interface::vtable(this).CreateDateTimeArray)(::windows_core::Interface::as_raw(this), value.len().try_into().unwrap(), value.as_ptr(), &mut result__).from_abi(result__) }) } pub fn CreateTimeSpanArray(value: &[TimeSpan]) -> ::windows_core::Result<::windows_core::IInspectable> { Self::IPropertyValueStatics(|this| unsafe { let mut result__ = ::std::mem::zeroed(); (::windows_core::Interface::vtable(this).CreateTimeSpanArray)(::windows_core::Interface::as_raw(this), value.len().try_into().unwrap(), value.as_ptr(), &mut result__).from_abi(result__) }) } pub fn CreatePointArray(value: &[Point]) -> ::windows_core::Result<::windows_core::IInspectable> { Self::IPropertyValueStatics(|this| unsafe { let mut result__ = ::std::mem::zeroed(); (::windows_core::Interface::vtable(this).CreatePointArray)(::windows_core::Interface::as_raw(this), value.len().try_into().unwrap(), value.as_ptr(), &mut result__).from_abi(result__) }) } pub fn CreateSizeArray(value: &[Size]) -> ::windows_core::Result<::windows_core::IInspectable> { Self::IPropertyValueStatics(|this| unsafe { let mut result__ = ::std::mem::zeroed(); (::windows_core::Interface::vtable(this).CreateSizeArray)(::windows_core::Interface::as_raw(this), value.len().try_into().unwrap(), value.as_ptr(), &mut result__).from_abi(result__) }) } pub fn CreateRectArray(value: &[Rect]) -> ::windows_core::Result<::windows_core::IInspectable> { Self::IPropertyValueStatics(|this| unsafe { let mut result__ = ::std::mem::zeroed(); (::windows_core::Interface::vtable(this).CreateRectArray)(::windows_core::Interface::as_raw(this), value.len().try_into().unwrap(), value.as_ptr(), &mut result__).from_abi(result__) }) } #[doc(hidden)] pub fn IPropertyValueStatics ::windows_core::Result>(callback: F) -> ::windows_core::Result { static SHARED: ::windows_core::imp::FactoryCache = ::windows_core::imp::FactoryCache::new(); SHARED.call(callback) } } impl ::windows_core::RuntimeName for PropertyValue { const NAME: &'static str = "Windows.Foundation.PropertyValue"; } pub const RPC_E_DISCONNECTED: ::windows_core::HRESULT = ::windows_core::HRESULT(-2147417848i32); #[repr(C)] pub struct Rect { pub X: f32, pub Y: f32, pub Width: f32, pub Height: f32, } impl ::core::marker::Copy for Rect {} impl ::core::clone::Clone for Rect { fn clone(&self) -> Self { *self } } impl ::core::fmt::Debug for Rect { fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Rect").field("X", &self.X).field("Y", &self.Y).field("Width", &self.Width).field("Height", &self.Height).finish() } } impl ::windows_core::TypeKind for Rect { type TypeKind = ::windows_core::CopyType; } impl ::windows_core::RuntimeType for Rect { const SIGNATURE: ::windows_core::imp::ConstBuffer = ::windows_core::imp::ConstBuffer::from_slice(b"struct(Windows.Foundation.Rect;f4;f4;f4;f4)"); } impl ::core::cmp::PartialEq for Rect { fn eq(&self, other: &Self) -> bool { self.X == other.X && self.Y == other.Y && self.Width == other.Width && self.Height == other.Height } } impl ::core::cmp::Eq for Rect {} impl ::core::default::Default for Rect { fn default() -> Self { unsafe { ::core::mem::zeroed() } } } #[repr(C)] pub struct Size { pub Width: f32, pub Height: f32, } impl ::core::marker::Copy for Size {} impl ::core::clone::Clone for Size { fn clone(&self) -> Self { *self } } impl ::core::fmt::Debug for Size { fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Size").field("Width", &self.Width).field("Height", &self.Height).finish() } } impl ::windows_core::TypeKind for Size { type TypeKind = ::windows_core::CopyType; } impl ::windows_core::RuntimeType for Size { const SIGNATURE: ::windows_core::imp::ConstBuffer = ::windows_core::imp::ConstBuffer::from_slice(b"struct(Windows.Foundation.Size;f4;f4)"); } impl ::core::cmp::PartialEq for Size { fn eq(&self, other: &Self) -> bool { self.Width == other.Width && self.Height == other.Height } } impl ::core::cmp::Eq for Size {} impl ::core::default::Default for Size { fn default() -> Self { unsafe { ::core::mem::zeroed() } } } #[repr(C)] pub struct TimeSpan { pub Duration: i64, } impl ::core::marker::Copy for TimeSpan {} impl ::core::clone::Clone for TimeSpan { fn clone(&self) -> Self { *self } } impl ::core::fmt::Debug for TimeSpan { fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("TimeSpan").field("Duration", &self.Duration).finish() } } impl ::windows_core::TypeKind for TimeSpan { type TypeKind = ::windows_core::CopyType; } impl ::windows_core::RuntimeType for TimeSpan { const SIGNATURE: ::windows_core::imp::ConstBuffer = ::windows_core::imp::ConstBuffer::from_slice(b"struct(Windows.Foundation.TimeSpan;i8)"); } impl ::core::cmp::PartialEq for TimeSpan { fn eq(&self, other: &Self) -> bool { self.Duration == other.Duration } } impl ::core::cmp::Eq for TimeSpan {} impl ::core::default::Default for TimeSpan { fn default() -> Self { unsafe { ::core::mem::zeroed() } } }