Skip to content

Commit aca9555

Browse files
committedJan 20, 2025
Update deps
1 parent d33cbfb commit aca9555

File tree

3 files changed

+120
-41
lines changed

3 files changed

+120
-41
lines changed
 

‎Cargo.lock

+105-30
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎wslscript_handler/Cargo.toml

+4-2
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,8 @@ version = "0.3.9"
2727
features = ["unknwnbase", "winerror", "winuser", "oleidl"]
2828

2929
[dependencies.windows]
30-
version = "0.54"
30+
version = "0.59"
3131
features = [
32-
"implement",
3332
"Win32_System_Com",
3433
"Win32_System_Com_StructuredStorage",
3534
"Win32_System_Ole",
@@ -38,6 +37,9 @@ features = [
3837
"Win32_UI_Shell",
3938
]
4039

40+
[dependencies.windows-core]
41+
version = "0.59"
42+
4143
[lib]
4244
crate-type = ["cdylib"]
4345

‎wslscript_handler/src/interface.rs

+11-9
Original file line numberDiff line numberDiff line change
@@ -222,11 +222,11 @@ struct Handler {
222222
/// IClassFactory interface.
223223
///
224224
/// https://learn.microsoft.com/en-us/windows/win32/api/unknwn/nn-unknwn-iclassfactory
225-
impl Com::IClassFactory_Impl for Handler {
225+
impl Com::IClassFactory_Impl for Handler_Impl {
226226
/// https://learn.microsoft.com/en-us/windows/win32/api/unknwn/nf-unknwn-iclassfactory-createinstance
227227
fn CreateInstance(
228228
&self,
229-
punkouter: Option<&wc::IUnknown>,
229+
punkouter: wc::Ref<wc::IUnknown>,
230230
riid: *const wc::GUID,
231231
ppvobject: *mut *mut ::core::ffi::c_void,
232232
) -> wc::Result<()> {
@@ -251,7 +251,7 @@ impl Com::IClassFactory_Impl for Handler {
251251
/// IPersist interface.
252252
///
253253
/// https://learn.microsoft.com/en-us/windows/win32/api/objidl/nn-objidl-ipersist
254-
impl Com::IPersist_Impl for Handler {
254+
impl Com::IPersist_Impl for Handler_Impl {
255255
/// https://learn.microsoft.com/en-us/windows/win32/api/objidl/nf-objidl-ipersist-getclassid
256256
fn GetClassID(&self) -> wc::Result<wc::GUID> {
257257
log::debug!("IPersist::GetClassID");
@@ -265,7 +265,7 @@ impl Com::IPersist_Impl for Handler {
265265
/// IPersistFile interface.
266266
///
267267
/// https://learn.microsoft.com/en-us/windows/win32/api/objidl/nn-objidl-ipersistfile
268-
impl Com::IPersistFile_Impl for Handler {
268+
impl Com::IPersistFile_Impl for Handler_Impl {
269269
/// https://learn.microsoft.com/en-us/windows/win32/api/objidl/nf-objidl-ipersistfile-isdirty
270270
fn IsDirty(&self) -> wc::HRESULT {
271271
log::debug!("IPersistFile::IsDirty");
@@ -310,11 +310,11 @@ impl Com::IPersistFile_Impl for Handler {
310310
/// IDropTarget interface.
311311
///
312312
/// https://learn.microsoft.com/en-us/windows/win32/api/oleidl/nn-oleidl-idroptarget
313-
impl Ole::IDropTarget_Impl for Handler {
313+
impl Ole::IDropTarget_Impl for Handler_Impl {
314314
/// https://learn.microsoft.com/en-us/windows/win32/api/oleidl/nf-oleidl-idroptarget-dragenter
315315
fn DragEnter(
316316
&self,
317-
_pdataobj: Option<&Com::IDataObject>,
317+
_pdataobj: wc::Ref<Com::IDataObject>,
318318
_grfkeystate: SystemServices::MODIFIERKEYS_FLAGS,
319319
_pt: &Foundation::POINTL,
320320
_pdweffect: *mut Ole::DROPEFFECT,
@@ -346,7 +346,7 @@ impl Ole::IDropTarget_Impl for Handler {
346346
/// https://learn.microsoft.com/en-us/windows/win32/api/oleidl/nf-oleidl-idroptarget-drop
347347
fn Drop(
348348
&self,
349-
pdataobj: Option<&Com::IDataObject>,
349+
pdataobj: wc::Ref<Com::IDataObject>,
350350
grfkeystate: SystemServices::MODIFIERKEYS_FLAGS,
351351
_pt: &Foundation::POINTL,
352352
pdweffect: *mut Ole::DROPEFFECT,
@@ -356,7 +356,9 @@ impl Ole::IDropTarget_Impl for Handler {
356356
Ok(t) => t.clone(),
357357
Err(_) => return Err(wc::Error::from(Foundation::E_UNEXPECTED)),
358358
};
359-
let obj = pdataobj.ok_or_else(|| wc::Error::from(Foundation::E_UNEXPECTED))?;
359+
let obj = pdataobj
360+
.as_ref()
361+
.ok_or_else(|| wc::Error::from(Foundation::E_UNEXPECTED))?;
360362
let paths = get_paths_from_data_obj(obj)?;
361363
let keys = KeyState::from_bits_truncate(grfkeystate.0);
362364
super::handle_dropped_files(target, paths, keys)
@@ -404,7 +406,7 @@ fn get_paths_from_data_obj(obj: &Com::IDataObject) -> wc::Result<Vec<PathBuf>> {
404406
unsafe { std::mem::ManuallyDrop::drop(&mut medium.pUnkForRelease) }
405407
} else {
406408
log::debug!("No release interface, calling GlobalFree()");
407-
let _ = unsafe { Foundation::GlobalFree(medium.u.hGlobal) }.inspect_err(|e| {
409+
let _ = unsafe { Foundation::GlobalFree(Some(medium.u.hGlobal)) }.inspect_err(|e| {
408410
log::debug!("GlobalFree(): {}", e);
409411
});
410412
}

0 commit comments

Comments
 (0)
Please sign in to comment.