=?UTF-8?Q?Michael=20M=C3=BCller=20?=: combase: Add stub for CleanupTlsOleState.

Alexandre Julliard julliard at winehq.org
Fri May 4 17:10:34 CDT 2018


Module: wine
Branch: master
Commit: 7bb7bc86d63cbc2ade8e627515422ae19ece6d00
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=7bb7bc86d63cbc2ade8e627515422ae19ece6d00

Author: Michael Müller <michael at fds-team.de>
Date:   Fri May  4 06:13:18 2018 +0000

combase: Add stub for CleanupTlsOleState.

Signed-off-by: Alistair Leslie-Hughes <leslie_alistair at hotmail.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 dlls/combase/combase.spec | 2 +-
 dlls/combase/roapi.c      | 8 ++++++++
 2 files changed, 9 insertions(+), 1 deletion(-)

diff --git a/dlls/combase/combase.spec b/dlls/combase/combase.spec
index 72a7eb5..c8a8dee 100644
--- a/dlls/combase/combase.spec
+++ b/dlls/combase/combase.spec
@@ -66,7 +66,7 @@
 @ stdcall CLSIDFromProgID(wstr ptr) ole32.CLSIDFromProgID
 @ stdcall CLSIDFromString(wstr ptr) ole32.CLSIDFromString
 @ stub CleanupOleStateInAllTls
-@ stub CleanupTlsOleState
+@ stdcall CleanupTlsOleState(ptr)
 @ stub ClearCleanupFlag
 @ stdcall CoAddRefServerProcess() ole32.CoAddRefServerProcess
 @ stub CoAllowUnmarshalerCLSID
diff --git a/dlls/combase/roapi.c b/dlls/combase/roapi.c
index ee03bd3..63e218d 100644
--- a/dlls/combase/roapi.c
+++ b/dlls/combase/roapi.c
@@ -274,3 +274,11 @@ HRESULT WINAPI RoRegisterActivationFactories(HSTRING *classes, PFNGETACTIVATIONF
 
     return S_OK;
 }
+
+/***********************************************************************
+ *      CleanupTlsOleState (combase.@)
+ */
+void WINAPI CleanupTlsOleState(void *unknown)
+{
+    FIXME("(%p): stub\n", unknown);
+}




More information about the wine-cvs mailing list