Commit fc33d3bc authored by Mike McCormack's avatar Mike McCormack Committed by Alexandre Julliard

shdocvw: Stub implementation of IEWinMain.

parent 330978ec
# ordinal exports # ordinal exports
101 stub -noname IEWinMain 101 stdcall -noname IEWinMain(str long)
102 stub -noname CreateShortcutInDirA 102 stub -noname CreateShortcutInDirA
103 stub -noname CreateShortcutInDirW 103 stub -noname CreateShortcutInDirW
104 stdcall -noname WhichPlatformFORWARD() 104 stdcall -noname WhichPlatformFORWARD()
......
...@@ -656,3 +656,15 @@ DWORD WINAPI StopWatchAFORWARD(DWORD dwClass, LPCSTR lpszStr, DWORD dwUnknown, ...@@ -656,3 +656,15 @@ DWORD WINAPI StopWatchAFORWARD(DWORD dwClass, LPCSTR lpszStr, DWORD dwUnknown,
return p(dwClass, lpszStr, dwUnknown, dwMode, dwTimeStamp); return p(dwClass, lpszStr, dwUnknown, dwMode, dwTimeStamp);
return ERROR_CALL_NOT_IMPLEMENTED; return ERROR_CALL_NOT_IMPLEMENTED;
} }
/******************************************************************
* IEWinMain (SHDOCVW.101)
*
* Only returns on error.
*/
DWORD WINAPI IEWinMain(LPSTR szCommandLine, int nShowWindow)
{
FIXME("%s %d\n", debugstr_a(szCommandLine), nShowWindow);
ExitProcess(0);
return 0;
}
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