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:
parent
3192bb9764
commit
69e2467aa7
|
@ -2374,6 +2374,14 @@ void __cdecl Concurrency_wait(unsigned int time)
|
||||||
Sleep(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
|
#ifdef __ASM_USE_THISCALL_WRAPPER
|
||||||
|
|
||||||
#define DEFINE_VTBL_WRAPPER(off) \
|
#define DEFINE_VTBL_WRAPPER(off) \
|
||||||
|
|
|
@ -562,12 +562,6 @@ LONG CDECL __crtUnhandledException(EXCEPTION_POINTERS *ep)
|
||||||
SetUnhandledExceptionFilter(NULL);
|
SetUnhandledExceptionFilter(NULL);
|
||||||
return UnhandledExceptionFilter(ep);
|
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
|
#endif
|
||||||
|
|
||||||
#if _MSVCR_VER>=120
|
#if _MSVCR_VER>=120
|
||||||
|
|
Loading…
Reference in New Issue