mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-02 15:28:03 +00:00
combase: Add stub for CleanupTlsOleState.
Signed-off-by: Alistair Leslie-Hughes <leslie_alistair@hotmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
e5608bd2ae
commit
7bb7bc86d6
2 changed files with 9 additions and 1 deletions
|
@ -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
|
||||
|
|
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue