diff --git a/reactos/dll/win32/olepro32/olepro32.rbuild b/reactos/dll/win32/olepro32/olepro32.rbuild
index 7d812ab23eb..b3b6e0f8f58 100644
--- a/reactos/dll/win32/olepro32/olepro32.rbuild
+++ b/reactos/dll/win32/olepro32/olepro32.rbuild
@@ -14,5 +14,6 @@
kernel32
ntdll
olepro32stubs.c
+ version.rc
olepro32.spec
diff --git a/reactos/dll/win32/olepro32/olepro32_ros.diff b/reactos/dll/win32/olepro32/olepro32_ros.diff
new file mode 100644
index 00000000000..83b8fa32d3c
--- /dev/null
+++ b/reactos/dll/win32/olepro32/olepro32_ros.diff
@@ -0,0 +1,9 @@
+Index: olepro32.rbuild
+===================================================================
+--- olepro32.rbuild (revision 23782)
++++ olepro32.rbuild (working copy)
+@@ -1,3 +1,3 @@
++
+-
+
+
diff --git a/reactos/dll/win32/olepro32/olepro32stubs.c b/reactos/dll/win32/olepro32/olepro32stubs.c
index 23bcb651274..5046960dd40 100644
--- a/reactos/dll/win32/olepro32/olepro32stubs.c
+++ b/reactos/dll/win32/olepro32/olepro32stubs.c
@@ -20,7 +20,6 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
-#define COM_NO_WINDOWS_H
#include
#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;
}
diff --git a/reactos/dll/win32/olepro32/version.rc b/reactos/dll/win32/olepro32/version.rc
new file mode 100644
index 00000000000..a78097695d6
--- /dev/null
+++ b/reactos/dll/win32/olepro32/version.rc
@@ -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"