Commit 3d8bf3b0 authored by Andreas Mohr's avatar Andreas Mohr Committed by Alexandre Julliard

Added some stubs needed for Win98 explorer.exe.

parent 6dae7c2d
...@@ -7,18 +7,18 @@ ...@@ -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 @
......
...@@ -95,3 +95,40 @@ HRESULT WINAPI SHDOCVW_DllUnregisterServer() ...@@ -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;
}
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