Moved stub of Control_FillCache_RunDLL from ascii to unicode.

This commit is contained in:
Stefan Leichter 2004-05-27 01:54:30 +00:00 committed by Alexandre Julliard
parent 9a472ba3c1
commit c51c46bada
1 changed files with 11 additions and 11 deletions

View File

@ -437,23 +437,23 @@ void WINAPI Control_RunDLLA(HWND hWnd, HINSTANCE hInst, LPCSTR cmd, DWORD nCmdSh
HeapFree(GetProcessHeap(), 0, wszCmd);
}
/*************************************************************************
* Control_FillCache_RunDLLA [SHELL32.@]
*
*/
HRESULT WINAPI Control_FillCache_RunDLLA(HWND hWnd, HANDLE hModule, DWORD w, DWORD x)
{
FIXME("%p %p 0x%04lx 0x%04lx stub\n", hWnd, hModule, w, x);
return 0;
}
/*************************************************************************
* Control_FillCache_RunDLLW [SHELL32.@]
*
*/
HRESULT WINAPI Control_FillCache_RunDLLW(HWND hWnd, HANDLE hModule, DWORD w, DWORD x)
{
return Control_FillCache_RunDLLA(hWnd, hModule, w, x);
FIXME("%p %p 0x%08lx 0x%08lx stub\n", hWnd, hModule, w, x);
return 0;
}
/*************************************************************************
* Control_FillCache_RunDLLA [SHELL32.@]
*
*/
HRESULT WINAPI Control_FillCache_RunDLLA(HWND hWnd, HANDLE hModule, DWORD w, DWORD x)
{
return Control_FillCache_RunDLLW(hWnd, hModule, w, x);
}