Skip to content
Snippets Groups Projects
Commit bbc25aaa authored by John K. Hohm's avatar John K. Hohm Committed by Alexandre Julliard
Browse files

Implement DllRegisterServer and DllUnregisterServer for ole32.dll, and

add OleSelfRegister version string.
parent 29ba6163
No related branches found
No related tags found
No related merge requests found
......@@ -10,3 +10,4 @@ ole32.spec.c
ole32.spec.def
ole32res.res
storage.spec.c
version.res
......@@ -38,6 +38,7 @@ C_SRCS = \
ole32_main.c \
oleobj.c \
oleproxy.c \
regsvr.c \
rpc.c \
stg_bigblockfile.c \
stg_stream.c \
......@@ -46,7 +47,7 @@ C_SRCS = \
C_SRCS16 = ole2nls.c
RC_SRCS = ole32res.rc
RC_SRCS = ole32res.rc version.rc
@MAKE_DLL_RULES@
......
......@@ -263,3 +263,4 @@
263 stub WdtpInterfacePointer_UserMarshal
264 stub WdtpInterfacePointer_UserSize
265 stub WdtpInterfacePointer_UserUnmarshal
@ stdcall DllUnregisterServer() OLE32_DllUnregisterServer
......@@ -51,11 +51,4 @@ BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID fImpLoad)
return TRUE;
}
/***********************************************************************
* DllRegisterServer (OLE32.194)
*/
HRESULT WINAPI OLE32_DllRegisterServer() {
/* FIXME: what Interfaces should we register ... */
FIXME("(), stub!\n");
return S_OK;
}
/* NOTE: DllRegisterServer and DllUnregisterServer are in regsvr.c */
This diff is collapsed.
/*
* version information for ole32.dll
*
* Copyright (C) 2003 John K. Hohm
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#define WINE_OLESELFREGISTER
#define WINE_FILENAME_STR "ole32.dll"
#include <wine/wine_common_ver.rc>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment