From 42d7d1fafb766e0152e658e61661ebec7ec5f077 Mon Sep 17 00:00:00 2001 From: Rolf Kalbermatter Date: Mon, 16 Dec 2002 22:40:05 +0000 Subject: [PATCH] Do at least something for SHDragDrop functions although that isn't the complete operation. --- dlls/shell32/shellord.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/dlls/shell32/shellord.c b/dlls/shell32/shellord.c index 406fd675d48..772cd763305 100644 --- a/dlls/shell32/shellord.c +++ b/dlls/shell32/shellord.c @@ -415,6 +415,7 @@ HRESULT WINAPI SHRegisterDragDrop( HRESULT WINAPI SHRevokeDragDrop(HWND hWnd) { FIXME("(%p):stub.\n",hWnd); + if (GetShellOle()) return pRevokeDragDrop(hWnd); return 0; } @@ -433,7 +434,8 @@ HRESULT WINAPI SHDoDragDrop( { FIXME("(%p %p %p 0x%08lx %p):stub.\n", hWnd, lpDataObject, lpDropSource, dwOKEffect, pdwEffect); - return 0; + if (GetShellOle()) return pDoDragDrop(lpDataObject, lpDropSource, dwOKEffect, pdwEffect); + return 0; } /************************************************************************* -- 2.11.4.GIT