Added some stubs needed for Win98 explorer.exe.

This commit is contained in:
Andreas Mohr 2003-05-13 04:44:39 +00:00 committed by Alexandre Julliard
parent 6dae7c2da8
commit 3d8bf3b0a3
2 changed files with 40 additions and 3 deletions

View File

@ -7,18 +7,18 @@
106 stub HlinkFindFrame 106 stub HlinkFindFrame
107 stub SetShellOfflineState 107 stub SetShellOfflineState
108 stub AddUrlToFavorites 108 stub AddUrlToFavorites
110 stub @ 110 stdcall SHDOCVW_110() SHDOCVW_110
111 stub @ 111 stub @
115 stub @ 115 stub @
116 stub @ 116 stub @
117 stub IEAboutBox 117 stub IEAboutBox
118 stub @ 118 stdcall SHDOCVW_118(long) SHDOCVW_118
119 stub @ 119 stub @
120 stub @ 120 stub @
121 stub @ 121 stub @
122 stub @ 122 stub @
123 stub @ 123 stub @
125 stub @ 125 stdcall SHDOCVW_125() SHDOCVW_125
130 stub @ 130 stub @
131 stub @ 131 stub @
135 stub @ 135 stub @

View File

@ -95,3 +95,40 @@ HRESULT WINAPI SHDOCVW_DllUnregisterServer()
FIXME("(), stub!\n"); FIXME("(), stub!\n");
return S_OK; return S_OK;
} }
/***********************************************************************
* SHDOCVW_110 (SHDOCVW.110)
*
* Called by Win98 explorer.exe main binary, definitely has 0
* parameters.
*/
DWORD WINAPI SHDOCVW_110(void)
{
FIXME("(), stub!\n");
return 0x0deadfeed;
}
/***********************************************************************
* SHDOCVW_118 (SHDOCVW.118)
*
* Called by Win98 explorer.exe main binary, definitely has only one
* parameter.
*/
DWORD WINAPI SHDOCVW_118(DWORD dw1)
{
FIXME("(%08lx), stub!\n", dw1);
return 0xcafedead;
}
/***********************************************************************
* SHDOCVW_125 (SHDOCVW.125)
*
* Called by Win98 explorer.exe main binary, definitely has 0
* parameters.
*/
DWORD WINAPI SHDOCVW_125(void)
{
FIXME("(), stub!\n");
return 0x0deadbee;
}