mscoree: Add CoEEShutDownCOM stub

Alistair Leslie-Hughes leslie_alistair at hotmail.com
Thu Mar 8 03:33:30 CST 2012


Hi,


Changelog:
     mscoree: Add CoEEShutDownCOM stub


Best Regards
  Alistair Leslie-Hughes
-------------- next part --------------
>From a7a6973e42851e3c2857753559a0920f50579902 Mon Sep 17 00:00:00 2001
From: Alistair Leslie-Hughes <leslie_alistair at hotmail.com>
Date: Sat, 3 Mar 2012 16:32:47 +1100
Subject: [PATCH] Add CoEEShutDownCOM stub
To: wine-patches <wine-patches at winehq.org>

This should fix issue #30012
---
 dlls/mscoree/mscoree.spec   |    2 +-
 dlls/mscoree/mscoree_main.c |    5 +++++
 2 files changed, 6 insertions(+), 1 deletions(-)

diff --git a/dlls/mscoree/mscoree.spec b/dlls/mscoree/mscoree.spec
index b944c34..ad883c6 100644
--- a/dlls/mscoree/mscoree.spec
+++ b/dlls/mscoree/mscoree.spec
@@ -9,7 +9,7 @@
 @ stub CloseCtrs
 @ stdcall CLRCreateInstance(ptr ptr ptr)
 @ stdcall ClrCreateManagedInstance(wstr ptr ptr)
-@ stub CoEEShutDownCOM
+@ stdcall CoEEShutDownCOM()
 @ stdcall CoInitializeCor(long)
 @ stub CoInitializeEE
 @ stub CoUninitializeCor
diff --git a/dlls/mscoree/mscoree_main.c b/dlls/mscoree/mscoree_main.c
index b6ae490..1aa120f 100644
--- a/dlls/mscoree/mscoree_main.c
+++ b/dlls/mscoree/mscoree_main.c
@@ -641,6 +641,11 @@ HRESULT WINAPI DllCanUnloadNow(VOID)
     return S_FALSE;
 }
 
+void WINAPI CoEEShutDownCOM(void)
+{
+    FIXME("stub.\n");
+}
+
 INT WINAPI ND_RU1( const void *ptr, INT offset )
 {
     return *((const BYTE *)ptr + offset);
-- 
1.7.5.4



More information about the wine-patches mailing list