Added stubs for DAD_SetDragImage() and PathCleanupSpec().

This commit is contained in:
Eric Kohl 1999-07-31 13:06:39 +00:00 committed by Alexandre Julliard
parent 539b7b416b
commit 8d8a123cf9
2 changed files with 21 additions and 2 deletions

View File

@ -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

View File

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