Commit f86ff01d authored by Hans Leidekker's avatar Hans Leidekker Committed by Alexandre Julliard

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

parent 65c76849
......@@ -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)
......
......@@ -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;
}
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