Commit 2fce04ee authored by John K. Hohm's avatar John K. Hohm Committed by Alexandre Julliard

Implement DllRegisterServer and DllUnregisterServer for shdocvw.dll,

and add OleSelfRegister version string.
parent 2c296648
......@@ -4,7 +4,7 @@ TOPOBJDIR = ../..
SRCDIR = @srcdir@
VPATH = @srcdir@
MODULE = shdocvw.dll
IMPORTS = ole32 kernel32
IMPORTS = ole32 user32 advapi32 kernel32
LDDLLFLAGS = @LDDLLFLAGS@
SYMBOLFILE = $(MODULE).tmp.o
......@@ -16,6 +16,7 @@ C_SRCS = \
misc.c \
oleobject.c \
persist.c \
regsvr.c \
shdocvw_main.c \
webbrowser.c
......
......@@ -79,25 +79,6 @@ HRESULT WINAPI SHDOCVW_DllInstall(BOOL bInstall, LPCWSTR cmdline)
}
/***********************************************************************
* DllRegisterServer (SHDOCVW.@)
*/
HRESULT WINAPI SHDOCVW_DllRegisterServer()
{
FIXME("(), stub!\n");
return S_OK;
}
/***********************************************************************
* DllUnregisterServer (SHDOCVW.@)
*/
HRESULT WINAPI SHDOCVW_DllUnregisterServer()
{
FIXME("(), stub!\n");
return S_OK;
}
/***********************************************************************
* SHDOCVW_110 (SHDOCVW.110)
*
* Called by Win98 explorer.exe main binary, definitely has 0
......
......@@ -16,8 +16,9 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#define WINE_OLESELFREGISTER
#define WINE_FILEDESCRIPTION_STR "Wine core dll"
#define WINE_FILENAME_STR "shdocw.dll"
#define WINE_FILENAME_STR "shdocvw.dll"
#define WINE_FILEVERSION 5,50,0,0
#define WINE_FILEVERSION_STR "5.50.0.0"
#define WINE_PRODUCTVERSION 5,50,0,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