shdocvw: Stub implementation of IEWinMain.
This commit is contained in:
parent
330978ec9b
commit
fc33d3bca8
|
@ -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()
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue