Do at least something for SHDragDrop functions although that isn't the

complete operation.
This commit is contained in:
Rolf Kalbermatter 2002-12-16 22:40:05 +00:00 committed by Alexandre Julliard
parent f90209f041
commit 42d7d1fafb
1 changed files with 3 additions and 1 deletions

View File

@ -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;
}
/*************************************************************************