shdocvw: Stub implementation of IEWinMain.

This commit is contained in:
Mike McCormack 2006-04-04 22:56:32 +09:00 committed by Alexandre Julliard
parent 330978ec9b
commit fc33d3bca8
2 changed files with 13 additions and 1 deletions

View File

@ -1,5 +1,5 @@
# ordinal exports
101 stub -noname IEWinMain
101 stdcall -noname IEWinMain(str long)
102 stub -noname CreateShortcutInDirA
103 stub -noname CreateShortcutInDirW
104 stdcall -noname WhichPlatformFORWARD()

View File

@ -656,3 +656,15 @@ DWORD WINAPI StopWatchAFORWARD(DWORD dwClass, LPCSTR lpszStr, DWORD dwUnknown,
return p(dwClass, lpszStr, dwUnknown, dwMode, dwTimeStamp);
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;
}