shell32: Add a stub implementation for SHPathPrepareForWrite{A, W}.

This commit is contained in:
Hans Leidekker 2007-03-24 17:33:12 +01:00 committed by Alexandre Julliard
parent 65c76849a7
commit f86ff01d9b
2 changed files with 20 additions and 2 deletions

View File

@ -362,8 +362,8 @@
@ stdcall SHIsFileAvailableOffline(wstr ptr)
@ stdcall SHLoadInProc(long)
@ stdcall SHLoadNonloadedIconOverlayIdentifiers()
@ stub SHPathPrepareForWriteA
@ stub SHPathPrepareForWriteW
@ stdcall SHPathPrepareForWriteA(long ptr str long)
@ stdcall SHPathPrepareForWriteW(long ptr wstr long)
@ stdcall SHQueryRecycleBinA(str ptr)
@ stdcall SHQueryRecycleBinW(wstr ptr)
@ stdcall SHSetLocalizedName(wstr wstr long)

View File

@ -1236,3 +1236,21 @@ HRESULT WINAPI DllCanUnloadNow(void)
FIXME("stub\n");
return S_FALSE;
}
/***********************************************************************
* SHPathPrepareForWriteA (SHELL32.@)
*/
HRESULT WINAPI SHPathPrepareForWriteA(HWND hwnd, IUnknown *modless, LPCSTR path, DWORD flags)
{
FIXME("%p %p %s 0x%08x\n", hwnd, modless, debugstr_a(path), flags);
return S_OK;
}
/***********************************************************************
* SHPathPrepareForWriteA (SHELL32.@)
*/
HRESULT WINAPI SHPathPrepareForWriteW(HWND hwnd, IUnknown *modless, LPCWSTR path, DWORD flags)
{
FIXME("%p %p %s 0x%08x\n", hwnd, modless, debugstr_w(path), flags);
return S_OK;
}