Commit 8d8a123c authored by Eric Kohl's avatar Eric Kohl Committed by Alexandre Julliard

Added stubs for DAD_SetDragImage() and PathCleanupSpec().

parent 539b7b41
......@@ -141,7 +141,7 @@ init Shell32LibMain
133 stdcall DragQueryFileW(long long ptr long) DragQueryFileW
134 stub DAD_DragMove
135 stdcall DragQueryPoint(long ptr) DragQueryPoint
136 stub DAD_SetDragImage
136 stdcall DAD_SetDragImage(long long) DAD_SetDragImage
137 stdcall DAD_ShowDragImage (long) DAD_ShowDragImage
138 stub DuplicateIcon # exported by name
139 stub Desktop_UpdateBriefcaseOnEvent
......@@ -176,7 +176,7 @@ init Shell32LibMain
168 stub SHCreatePropSheetExtArray
169 stub SHDestroyPropSheetExtArray
170 stub SHReplaceFromPropSheetExtArray
171 stub PathCleanupSpec
171 stdcall PathCleanupSpec(ptr ptr) PathCleanupSpec
172 stub SHCreateLinks
173 stdcall SHValidateUNC(long long long)SHValidateUNC
174 stdcall SHCreateShellFolderViewEx (ptr ptr) SHCreateShellFolderViewEx
......
......@@ -792,6 +792,16 @@ HRESULT WINAPI SHFreeUnusedLibraries (void)
return TRUE;
}
/*************************************************************************
* DAD_SetDragImage [SHELL32.136]
*
* NOTES
* exported by name
*/
HRESULT WINAPI DAD_SetDragImage (DWORD u, DWORD v)
{ FIXME("0x%08lx 0x%08lx stub\n",u, v);
return 0;
}
/*************************************************************************
* DAD_ShowDragImage [SHELL32.137]
*
* NOTES
......@@ -1287,3 +1297,12 @@ HRESULT WINAPI DoEnvironmentSubstAW(LPVOID x, LPVOID y)
return DoEnvironmentSubstW(x, y);
return DoEnvironmentSubstA(x, y);
}
/*************************************************************************
* PathCleanupSpec [SHELL32.171]
*
*/
BOOL WINAPI PathCleanupSpec(LPSTR x, LPSTR y)
{ FIXME("%p(%s) %p(%s) stub\n",x,debugstr_w(x),y,debugstr_w(y));
return TRUE;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment