Hans Leidekker : scrrun: Add stub implementations of DllRegisterServer and DllUnregisterServer.

Alexandre Julliard julliard at winehq.org
Mon Nov 14 13:33:56 CST 2011


Module: wine
Branch: master
Commit: 655e16f1c9a1543190fd5b0f9aad38fb06396fa3
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=655e16f1c9a1543190fd5b0f9aad38fb06396fa3

Author: Hans Leidekker <hans at codeweavers.com>
Date:   Thu Nov 10 11:38:00 2011 +0100

scrrun: Add stub implementations of DllRegisterServer and DllUnregisterServer.

---

 dlls/scrrun/scrrun.c    |   18 ++++++++++++++++++
 dlls/scrrun/scrrun.spec |    4 ++--
 2 files changed, 20 insertions(+), 2 deletions(-)

diff --git a/dlls/scrrun/scrrun.c b/dlls/scrrun/scrrun.c
index 84a7bef..e825697 100644
--- a/dlls/scrrun/scrrun.c
+++ b/dlls/scrrun/scrrun.c
@@ -41,3 +41,21 @@ BOOL WINAPI DllMain( HINSTANCE hinst, DWORD reason, LPVOID reserved )
     }
     return TRUE;
 }
+
+/***********************************************************************
+ *      DllRegisterServer (scrrun.@)
+ */
+HRESULT WINAPI DllRegisterServer(void)
+{
+    FIXME("\n");
+    return S_OK;
+}
+
+/***********************************************************************
+ *      DllUnregisterServer (scrrun.@)
+ */
+HRESULT WINAPI DllUnregisterServer(void)
+{
+    FIXME("\n");
+    return S_OK;
+}
diff --git a/dlls/scrrun/scrrun.spec b/dlls/scrrun/scrrun.spec
index 5316d8f..838e9ea 100644
--- a/dlls/scrrun/scrrun.spec
+++ b/dlls/scrrun/scrrun.spec
@@ -1,6 +1,6 @@
 @ stub DLLGetDocumentation
 @ stub DllCanUnloadNow
 @ stub DllGetClassObject
-@ stub DllRegisterServer
-@ stub DllUnregisterServer
+@ stdcall -private DllRegisterServer()
+@ stdcall -private DllUnregisterServer()
 @ stub DoOpenPipeStream




More information about the wine-cvs mailing list