Autosyncing with Wine HEAD

svn path=/trunk/; revision=26089
This commit is contained in:
The Wine Synchronizer 2007-03-14 14:50:28 +00:00
parent f64ae53f31
commit 7a7a27ca44
4 changed files with 41 additions and 5 deletions

View file

@ -14,5 +14,6 @@
<library>kernel32</library>
<library>ntdll</library>
<file>olepro32stubs.c</file>
<file>version.rc</file>
<file>olepro32.spec</file>
</module>

View file

@ -0,0 +1,9 @@
Index: olepro32.rbuild
===================================================================
--- olepro32.rbuild (revision 23782)
+++ olepro32.rbuild (working copy)
@@ -1,3 +1,3 @@
+<module name="olepro32" type="win32dll" entrypoint="0" baseaddress="${BASEADDRESS_OLEPRO32}" installbase="system32" installname="olepro32.dll" allowwarnings="true">
-<module name="olepro32" type="win32dll" baseaddress="${BASEADDRESS_OLEPRO32}" installbase="system32" installname="olepro32.dll" allowwarnings="true">
<autoregister infsection="OleControlDlls" type="DllRegisterServer" />
<importlibrary definition="olepro32.spec.def" />

View file

@ -20,7 +20,6 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#define COM_NO_WINDOWS_H
#include <stdarg.h>
#include "wine/debug.h"
@ -36,7 +35,7 @@ WINE_DEFAULT_DEBUG_CHANNEL(ole);
*/
HRESULT WINAPI DllUnregisterServer()
{
FIXME("not implemented (olepro32.dll)\n");
FIXME("stub\n");
return S_OK;
}
@ -45,7 +44,7 @@ HRESULT WINAPI DllUnregisterServer()
*/
HRESULT WINAPI DllRegisterServer()
{
FIXME("not implemented (olepro32.dll)\n");
FIXME("stub\n");
return S_OK;
}
@ -54,7 +53,7 @@ HRESULT WINAPI DllRegisterServer()
*/
HRESULT WINAPI DllCanUnloadNow(void)
{
FIXME("not implemented (olepro32.dll)\n");
FIXME("stub\n");
return S_OK;
}
@ -63,6 +62,6 @@ HRESULT WINAPI DllCanUnloadNow(void)
*/
HRESULT WINAPI DllGetClassObject( REFCLSID rclsid, REFIID riid, LPVOID* ppv )
{
FIXME("not implemented (olepro32.dll)\n");
FIXME("stub\n");
return S_OK;
}

View file

@ -0,0 +1,27 @@
/*
* Copyright 2006 Louis Lenders
*
* 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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#define WINE_OLESELFREGISTER
#define WINE_FILEDESCRIPTION_STR "Wine olepro32.dll"
#define WINE_FILENAME_STR "olepro32.dll"
#define WINE_FILEVERSION 5,0,4522,0
#define WINE_FILEVERSION_STR "5.0.4522"
#define WINE_PRODUCTVERSION 2,40,4522,0
#define WINE_PRODUCTVERSION_STR "2.40"
#include "wine/wine_common_ver.rc"