combase: Move CoFreeUnusedLibraries().
Signed-off-by: Nikolay Sivov <nsivov@codeweavers.com> Signed-off-by: Huw Davies <huw@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
81694b6292
commit
5ce66030ba
|
@ -1350,3 +1350,11 @@ HRESULT WINAPI DECLSPEC_HOTPATCH CoCreateInstanceEx(REFCLSID rclsid, IUnknown *o
|
|||
|
||||
return return_multi_qi(unk, count, results, TRUE);
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* CoFreeUnusedLibraries (combase.@)
|
||||
*/
|
||||
void WINAPI DECLSPEC_HOTPATCH CoFreeUnusedLibraries(void)
|
||||
{
|
||||
CoFreeUnusedLibrariesEx(INFINITE, 0);
|
||||
}
|
||||
|
|
|
@ -92,7 +92,7 @@
|
|||
@ stdcall CoDisconnectObject(ptr long) ole32.CoDisconnectObject
|
||||
@ stdcall CoEnableCallCancellation(ptr) ole32.CoEnableCallCancellation
|
||||
@ stdcall CoFileTimeNow(ptr)
|
||||
@ stdcall CoFreeUnusedLibraries() ole32.CoFreeUnusedLibraries
|
||||
@ stdcall CoFreeUnusedLibraries()
|
||||
@ stdcall CoFreeUnusedLibrariesEx(long long) ole32.CoFreeUnusedLibrariesEx
|
||||
@ stdcall CoGetActivationState(int128 long ptr)
|
||||
@ stub CoGetApartmentID
|
||||
|
|
|
@ -3006,23 +3006,6 @@ void WINAPI DECLSPEC_HOTPATCH CoFreeUnusedLibrariesEx(DWORD dwUnloadDelay, DWORD
|
|||
apartment_freeunusedlibraries(apt, dwUnloadDelay);
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* CoFreeUnusedLibraries [OLE32.@]
|
||||
*
|
||||
* Frees any unused libraries. Unused are identified as those that return
|
||||
* S_OK from their DllCanUnloadNow function.
|
||||
*
|
||||
* RETURNS
|
||||
* Nothing.
|
||||
*
|
||||
* SEE ALSO
|
||||
* CoLoadLibrary, CoFreeAllLibraries, CoFreeLibrary
|
||||
*/
|
||||
void WINAPI DECLSPEC_HOTPATCH CoFreeUnusedLibraries(void)
|
||||
{
|
||||
CoFreeUnusedLibrariesEx(INFINITE, 0);
|
||||
}
|
||||
|
||||
/******************************************************************************
|
||||
* CoLockObjectExternal [OLE32.@]
|
||||
*
|
||||
|
|
|
@ -23,7 +23,7 @@
|
|||
@ stdcall CoFileTimeToDosDateTime(ptr ptr ptr) kernel32.FileTimeToDosDateTime
|
||||
@ stdcall CoFreeAllLibraries()
|
||||
@ stdcall CoFreeLibrary(long)
|
||||
@ stdcall CoFreeUnusedLibraries()
|
||||
@ stdcall CoFreeUnusedLibraries() combase.CoFreeUnusedLibraries
|
||||
@ stdcall CoFreeUnusedLibrariesEx(long long)
|
||||
@ stdcall CoGetActivationState(int128 long ptr) combase.CoGetActivationState
|
||||
@ stdcall CoGetApartmentType(ptr ptr)
|
||||
|
|
Loading…
Reference in New Issue