@@ -222,11 +222,11 @@ struct Handler {
222
222
/// IClassFactory interface.
223
223
///
224
224
/// 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 {
226
226
/// https://learn.microsoft.com/en-us/windows/win32/api/unknwn/nf-unknwn-iclassfactory-createinstance
227
227
fn CreateInstance (
228
228
& self ,
229
- punkouter : Option < & wc:: IUnknown > ,
229
+ punkouter : wc :: Ref < wc:: IUnknown > ,
230
230
riid : * const wc:: GUID ,
231
231
ppvobject : * mut * mut :: core:: ffi:: c_void ,
232
232
) -> wc:: Result < ( ) > {
@@ -251,7 +251,7 @@ impl Com::IClassFactory_Impl for Handler {
251
251
/// IPersist interface.
252
252
///
253
253
/// 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 {
255
255
/// https://learn.microsoft.com/en-us/windows/win32/api/objidl/nf-objidl-ipersist-getclassid
256
256
fn GetClassID ( & self ) -> wc:: Result < wc:: GUID > {
257
257
log:: debug!( "IPersist::GetClassID" ) ;
@@ -265,7 +265,7 @@ impl Com::IPersist_Impl for Handler {
265
265
/// IPersistFile interface.
266
266
///
267
267
/// 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 {
269
269
/// https://learn.microsoft.com/en-us/windows/win32/api/objidl/nf-objidl-ipersistfile-isdirty
270
270
fn IsDirty ( & self ) -> wc:: HRESULT {
271
271
log:: debug!( "IPersistFile::IsDirty" ) ;
@@ -310,11 +310,11 @@ impl Com::IPersistFile_Impl for Handler {
310
310
/// IDropTarget interface.
311
311
///
312
312
/// 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 {
314
314
/// https://learn.microsoft.com/en-us/windows/win32/api/oleidl/nf-oleidl-idroptarget-dragenter
315
315
fn DragEnter (
316
316
& self ,
317
- _pdataobj : Option < & Com :: IDataObject > ,
317
+ _pdataobj : wc :: Ref < Com :: IDataObject > ,
318
318
_grfkeystate : SystemServices :: MODIFIERKEYS_FLAGS ,
319
319
_pt : & Foundation :: POINTL ,
320
320
_pdweffect : * mut Ole :: DROPEFFECT ,
@@ -346,7 +346,7 @@ impl Ole::IDropTarget_Impl for Handler {
346
346
/// https://learn.microsoft.com/en-us/windows/win32/api/oleidl/nf-oleidl-idroptarget-drop
347
347
fn Drop (
348
348
& self ,
349
- pdataobj : Option < & Com :: IDataObject > ,
349
+ pdataobj : wc :: Ref < Com :: IDataObject > ,
350
350
grfkeystate : SystemServices :: MODIFIERKEYS_FLAGS ,
351
351
_pt : & Foundation :: POINTL ,
352
352
pdweffect : * mut Ole :: DROPEFFECT ,
@@ -356,7 +356,9 @@ impl Ole::IDropTarget_Impl for Handler {
356
356
Ok ( t) => t. clone ( ) ,
357
357
Err ( _) => return Err ( wc:: Error :: from ( Foundation :: E_UNEXPECTED ) ) ,
358
358
} ;
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 ) ) ?;
360
362
let paths = get_paths_from_data_obj ( obj) ?;
361
363
let keys = KeyState :: from_bits_truncate ( grfkeystate. 0 ) ;
362
364
super :: handle_dropped_files ( target, paths, keys)
@@ -404,7 +406,7 @@ fn get_paths_from_data_obj(obj: &Com::IDataObject) -> wc::Result<Vec<PathBuf>> {
404
406
unsafe { std:: mem:: ManuallyDrop :: drop ( & mut medium. pUnkForRelease ) }
405
407
} else {
406
408
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| {
408
410
log:: debug!( "GlobalFree(): {}" , e) ;
409
411
} ) ;
410
412
}
0 commit comments