diff --git a/dlls/shell32/shell32.spec b/dlls/shell32/shell32.spec index 76e8d485c0f..0fa0d5052fc 100644 --- a/dlls/shell32/shell32.spec +++ b/dlls/shell32/shell32.spec @@ -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 diff --git a/dlls/shell32/shellord.c b/dlls/shell32/shellord.c index 6b1268d2922..250295a1329 100644 --- a/dlls/shell32/shellord.c +++ b/dlls/shell32/shellord.c @@ -791,6 +791,16 @@ HRESULT WINAPI SHFreeUnusedLibraries (void) { FIXME("stub\n"); 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] * @@ -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; +}