@@ -15248,12 +15248,12 @@ impl IDataPackagePropertySet2 {
15248
15248
let hr = ((*self.lpVtbl).put_PackageFamilyName)(self as *const _ as *mut _, value.get());
15249
15249
if hr == S_OK { Ok(()) } else { err(hr) }
15250
15250
}}
15251
- #[cfg(feature="windows-storage")] #[inline] pub fn get_square30x30_logo (&self) -> Result<Option<ComPtr<super::super::storage::streams::IRandomAccessStreamReference>>> { unsafe {
15251
+ #[cfg(feature="windows-storage")] #[inline] pub fn get_square_30x30_logo (&self) -> Result<Option<ComPtr<super::super::storage::streams::IRandomAccessStreamReference>>> { unsafe {
15252
15252
let mut out = null_mut();
15253
15253
let hr = ((*self.lpVtbl).get_Square30x30Logo)(self as *const _ as *mut _, &mut out);
15254
15254
if hr == S_OK { Ok(ComPtr::wrap_optional(out)) } else { err(hr) }
15255
15255
}}
15256
- #[cfg(feature="windows-storage")] #[inline] pub fn set_square30x30_logo (&self, value: &super::super::storage::streams::IRandomAccessStreamReference) -> Result<()> { unsafe {
15256
+ #[cfg(feature="windows-storage")] #[inline] pub fn set_square_30x30_logo (&self, value: &super::super::storage::streams::IRandomAccessStreamReference) -> Result<()> { unsafe {
15257
15257
let hr = ((*self.lpVtbl).put_Square30x30Logo)(self as *const _ as *mut _, value as *const _ as *mut _);
15258
15258
if hr == S_OK { Ok(()) } else { err(hr) }
15259
15259
}}
@@ -15367,7 +15367,7 @@ impl IDataPackagePropertySetView2 {
15367
15367
let hr = ((*self.lpVtbl).get_ContentSourceApplicationLink)(self as *const _ as *mut _, &mut out);
15368
15368
if hr == S_OK { Ok(ComPtr::wrap_optional(out)) } else { err(hr) }
15369
15369
}}
15370
- #[cfg(feature="windows-storage")] #[inline] pub fn get_square30x30_logo (&self) -> Result<Option<ComPtr<super::super::storage::streams::IRandomAccessStreamReference>>> { unsafe {
15370
+ #[cfg(feature="windows-storage")] #[inline] pub fn get_square_30x30_logo (&self) -> Result<Option<ComPtr<super::super::storage::streams::IRandomAccessStreamReference>>> { unsafe {
15371
15371
let mut out = null_mut();
15372
15372
let hr = ((*self.lpVtbl).get_Square30x30Logo)(self as *const _ as *mut _, &mut out);
15373
15373
if hr == S_OK { Ok(ComPtr::wrap_optional(out)) } else { err(hr) }
@@ -15698,8 +15698,8 @@ impl DataTransferManager {
15698
15698
#[inline] pub fn is_supported() -> Result<bool> {
15699
15699
<Self as RtActivatable<IDataTransferManagerStatics2>>::get_activation_factory().is_supported()
15700
15700
}
15701
- #[inline] pub fn show_share_uiwith_options (options: &ShareUIOptions) -> Result<()> {
15702
- <Self as RtActivatable<IDataTransferManagerStatics3>>::get_activation_factory().show_share_uiwith_options (options)
15701
+ #[inline] pub fn show_share_ui_with_options (options: &ShareUIOptions) -> Result<()> {
15702
+ <Self as RtActivatable<IDataTransferManagerStatics3>>::get_activation_factory().show_share_ui_with_options (options)
15703
15703
}
15704
15704
}
15705
15705
DEFINE_CLSID!(DataTransferManager(&[87,105,110,100,111,119,115,46,65,112,112,108,105,99,97,116,105,111,110,77,111,100,101,108,46,68,97,116,97,84,114,97,110,115,102,101,114,46,68,97,116,97,84,114,97,110,115,102,101,114,77,97,110,97,103,101,114,0]) [CLSID_DataTransferManager]);
@@ -15751,7 +15751,7 @@ RT_INTERFACE!{static interface IDataTransferManagerStatics3(IDataTransferManager
15751
15751
fn ShowShareUIWithOptions(&self, options: *mut ShareUIOptions) -> HRESULT
15752
15752
}}
15753
15753
impl IDataTransferManagerStatics3 {
15754
- #[inline] pub fn show_share_uiwith_options (&self, options: &ShareUIOptions) -> Result<()> { unsafe {
15754
+ #[inline] pub fn show_share_ui_with_options (&self, options: &ShareUIOptions) -> Result<()> { unsafe {
15755
15755
let hr = ((*self.lpVtbl).ShowShareUIWithOptions)(self as *const _ as *mut _, options as *const _ as *mut _);
15756
15756
if hr == S_OK { Ok(()) } else { err(hr) }
15757
15757
}}
@@ -16248,20 +16248,20 @@ impl ICoreDragOperation {
16248
16248
let hr = ((*self.lpVtbl).SetPointerId)(self as *const _ as *mut _, pointerId);
16249
16249
if hr == S_OK { Ok(()) } else { err(hr) }
16250
16250
}}
16251
- #[cfg(feature="windows-graphics")] #[inline] pub fn set_drag_uicontent_from_software_bitmap (&self, softwareBitmap: &::rt::gen::windows::graphics::imaging::SoftwareBitmap) -> Result<()> { unsafe {
16251
+ #[cfg(feature="windows-graphics")] #[inline] pub fn set_drag_ui_content_from_software_bitmap (&self, softwareBitmap: &::rt::gen::windows::graphics::imaging::SoftwareBitmap) -> Result<()> { unsafe {
16252
16252
let hr = ((*self.lpVtbl).SetDragUIContentFromSoftwareBitmap)(self as *const _ as *mut _, softwareBitmap as *const _ as *mut _);
16253
16253
if hr == S_OK { Ok(()) } else { err(hr) }
16254
16254
}}
16255
- #[cfg(feature="windows-graphics")] #[inline] pub fn set_drag_uicontent_from_software_bitmap_with_anchor_point (&self, softwareBitmap: &::rt::gen::windows::graphics::imaging::SoftwareBitmap, anchorPoint: foundation::Point) -> Result<()> { unsafe {
16255
+ #[cfg(feature="windows-graphics")] #[inline] pub fn set_drag_ui_content_from_software_bitmap_with_anchor_point (&self, softwareBitmap: &::rt::gen::windows::graphics::imaging::SoftwareBitmap, anchorPoint: foundation::Point) -> Result<()> { unsafe {
16256
16256
let hr = ((*self.lpVtbl).SetDragUIContentFromSoftwareBitmapWithAnchorPoint)(self as *const _ as *mut _, softwareBitmap as *const _ as *mut _, anchorPoint);
16257
16257
if hr == S_OK { Ok(()) } else { err(hr) }
16258
16258
}}
16259
- #[inline] pub fn get_drag_uicontent_mode (&self) -> Result<CoreDragUIContentMode> { unsafe {
16259
+ #[inline] pub fn get_drag_ui_content_mode (&self) -> Result<CoreDragUIContentMode> { unsafe {
16260
16260
let mut out = zeroed();
16261
16261
let hr = ((*self.lpVtbl).get_DragUIContentMode)(self as *const _ as *mut _, &mut out);
16262
16262
if hr == S_OK { Ok(out) } else { err(hr) }
16263
16263
}}
16264
- #[inline] pub fn set_drag_uicontent_mode (&self, value: CoreDragUIContentMode) -> Result<()> { unsafe {
16264
+ #[inline] pub fn set_drag_ui_content_mode (&self, value: CoreDragUIContentMode) -> Result<()> { unsafe {
16265
16265
let hr = ((*self.lpVtbl).put_DragUIContentMode)(self as *const _ as *mut _, value);
16266
16266
if hr == S_OK { Ok(()) } else { err(hr) }
16267
16267
}}
@@ -29197,30 +29197,30 @@ impl IWalletItem {
29197
29197
let hr = ((*self.lpVtbl).put_ExpirationDate)(self as *const _ as *mut _, value as *const _ as *mut _);
29198
29198
if hr == S_OK { Ok(()) } else { err(hr) }
29199
29199
}}
29200
- #[cfg(feature="windows-storage")] #[inline] pub fn get_logo159x159 (&self) -> Result<Option<ComPtr<super::super::storage::streams::IRandomAccessStreamReference>>> { unsafe {
29200
+ #[cfg(feature="windows-storage")] #[inline] pub fn get_logo_159x159 (&self) -> Result<Option<ComPtr<super::super::storage::streams::IRandomAccessStreamReference>>> { unsafe {
29201
29201
let mut out = null_mut();
29202
29202
let hr = ((*self.lpVtbl).get_Logo159x159)(self as *const _ as *mut _, &mut out);
29203
29203
if hr == S_OK { Ok(ComPtr::wrap_optional(out)) } else { err(hr) }
29204
29204
}}
29205
- #[cfg(feature="windows-storage")] #[inline] pub fn set_logo159x159 (&self, value: &super::super::storage::streams::IRandomAccessStreamReference) -> Result<()> { unsafe {
29205
+ #[cfg(feature="windows-storage")] #[inline] pub fn set_logo_159x159 (&self, value: &super::super::storage::streams::IRandomAccessStreamReference) -> Result<()> { unsafe {
29206
29206
let hr = ((*self.lpVtbl).put_Logo159x159)(self as *const _ as *mut _, value as *const _ as *mut _);
29207
29207
if hr == S_OK { Ok(()) } else { err(hr) }
29208
29208
}}
29209
- #[cfg(feature="windows-storage")] #[inline] pub fn get_logo336x336 (&self) -> Result<Option<ComPtr<super::super::storage::streams::IRandomAccessStreamReference>>> { unsafe {
29209
+ #[cfg(feature="windows-storage")] #[inline] pub fn get_logo_336x336 (&self) -> Result<Option<ComPtr<super::super::storage::streams::IRandomAccessStreamReference>>> { unsafe {
29210
29210
let mut out = null_mut();
29211
29211
let hr = ((*self.lpVtbl).get_Logo336x336)(self as *const _ as *mut _, &mut out);
29212
29212
if hr == S_OK { Ok(ComPtr::wrap_optional(out)) } else { err(hr) }
29213
29213
}}
29214
- #[cfg(feature="windows-storage")] #[inline] pub fn set_logo336x336 (&self, value: &super::super::storage::streams::IRandomAccessStreamReference) -> Result<()> { unsafe {
29214
+ #[cfg(feature="windows-storage")] #[inline] pub fn set_logo_336x336 (&self, value: &super::super::storage::streams::IRandomAccessStreamReference) -> Result<()> { unsafe {
29215
29215
let hr = ((*self.lpVtbl).put_Logo336x336)(self as *const _ as *mut _, value as *const _ as *mut _);
29216
29216
if hr == S_OK { Ok(()) } else { err(hr) }
29217
29217
}}
29218
- #[cfg(feature="windows-storage")] #[inline] pub fn get_logo99x99 (&self) -> Result<Option<ComPtr<super::super::storage::streams::IRandomAccessStreamReference>>> { unsafe {
29218
+ #[cfg(feature="windows-storage")] #[inline] pub fn get_logo_99x99 (&self) -> Result<Option<ComPtr<super::super::storage::streams::IRandomAccessStreamReference>>> { unsafe {
29219
29219
let mut out = null_mut();
29220
29220
let hr = ((*self.lpVtbl).get_Logo99x99)(self as *const _ as *mut _, &mut out);
29221
29221
if hr == S_OK { Ok(ComPtr::wrap_optional(out)) } else { err(hr) }
29222
29222
}}
29223
- #[cfg(feature="windows-storage")] #[inline] pub fn set_logo99x99 (&self, value: &super::super::storage::streams::IRandomAccessStreamReference) -> Result<()> { unsafe {
29223
+ #[cfg(feature="windows-storage")] #[inline] pub fn set_logo_99x99 (&self, value: &super::super::storage::streams::IRandomAccessStreamReference) -> Result<()> { unsafe {
29224
29224
let hr = ((*self.lpVtbl).put_Logo99x99)(self as *const _ as *mut _, value as *const _ as *mut _);
29225
29225
if hr == S_OK { Ok(()) } else { err(hr) }
29226
29226
}}
0 commit comments