msvcrt: Move _Trace_agents function to concurrency.c.

Signed-off-by: Piotr Caban <piotr@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Piotr Caban 2021-08-18 16:09:27 +02:00 committed by Alexandre Julliard
parent 3192bb9764
commit 69e2467aa7
2 changed files with 8 additions and 6 deletions

View file

@ -2374,6 +2374,14 @@ void __cdecl Concurrency_wait(unsigned int time)
Sleep(time);
}
#if _MSVCR_VER>=110
/* ?_Trace_agents@Concurrency@@YAXW4Agents_EventType@1@_JZZ */
void WINAPIV _Trace_agents(/*enum Concurrency::Agents_EventType*/int type, __int64 id, ...)
{
FIXME("(%d %s)\n", type, wine_dbgstr_longlong(id));
}
#endif
#ifdef __ASM_USE_THISCALL_WRAPPER
#define DEFINE_VTBL_WRAPPER(off) \

View file

@ -562,12 +562,6 @@ LONG CDECL __crtUnhandledException(EXCEPTION_POINTERS *ep)
SetUnhandledExceptionFilter(NULL);
return UnhandledExceptionFilter(ep);
}
/* ?_Trace_agents@Concurrency@@YAXW4Agents_EventType@1@_JZZ */
void WINAPIV _Trace_agents(/*enum Concurrency::Agents_EventType*/int type, __int64 id, ...)
{
FIXME("(%d %s)\n", type, wine_dbgstr_longlong(id));
}
#endif
#if _MSVCR_VER>=120