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 @@ ...@@ -113,8 +113,8 @@
@ stub DoAddToFavDlgW @ stub DoAddToFavDlgW
@ stdcall DoFileDownload(wstr) @ stdcall DoFileDownload(wstr)
@ stub DoFileDownloadEx @ stub DoFileDownloadEx
@ stub DoOrganizeFavDlg @ stdcall DoOrganizeFavDlg(long str)
@ stub DoOrganizeFavDlgW @ stdcall DoOrganizeFavDlgW(long wstr)
@ stub DoPrivacyDlg @ stub DoPrivacyDlg
@ stub HlinkFrameNavigate @ stub HlinkFrameNavigate
@ stub HlinkFrameNavigateNHL @ stub HlinkFrameNavigateNHL
......
...@@ -560,3 +560,32 @@ BOOL WINAPI DoFileDownload(LPWSTR filename) ...@@ -560,3 +560,32 @@ BOOL WINAPI DoFileDownload(LPWSTR filename)
FIXME("(%s) stub\n", debugstr_w(filename)); FIXME("(%s) stub\n", debugstr_w(filename));
return FALSE; 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