Commit b8901bfc authored by Vijay Kiran Kamuju's avatar Vijay Kiran Kamuju Committed by Alexandre Julliard

shdocvw: Add stub DoOrganizeFavDlg.

parent 941d74a2
......@@ -113,8 +113,8 @@
@ stub DoAddToFavDlgW
@ stdcall DoFileDownload(wstr)
@ stub DoFileDownloadEx
@ stub DoOrganizeFavDlg
@ stub DoOrganizeFavDlgW
@ stdcall DoOrganizeFavDlg(long str)
@ stdcall DoOrganizeFavDlgW(long wstr)
@ stub DoPrivacyDlg
@ stub HlinkFrameNavigate
@ stub HlinkFrameNavigateNHL
......
......@@ -560,3 +560,32 @@ BOOL WINAPI DoFileDownload(LPWSTR filename)
FIXME("(%s) stub\n", debugstr_w(filename));
return FALSE;
}
/******************************************************************
* DoOrganizeFavDlgW (SHDOCVW.@)
*/
BOOL WINAPI DoOrganizeFavDlgW(HWND hwnd, LPCWSTR initDir)
{
FIXME("(%p %s) stub\n", hwnd, debugstr_w(initDir));
return FALSE;
}
/******************************************************************
* DoOrganizeFavDlg (SHDOCVW.@)
*/
BOOL WINAPI DoOrganizeFavDlg(HWND hwnd, LPCSTR initDir)
{
LPWSTR initDirW = NULL;
BOOL res;
TRACE("(%p %s)\n", hwnd, debugstr_a(initDir));
if (initDir) {
DWORD len = MultiByteToWideChar(CP_ACP, 0, initDir, -1, NULL, 0);
initDirW = heap_alloc(len * sizeof(WCHAR));
MultiByteToWideChar(CP_ACP, 0, initDir, -1, initDirW, len);
}
res = DoOrganizeFavDlgW(hwnd, initDirW);
heap_free(initDirW);
return res;
}
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