MCPcopy Create free account
hub / github.com/ajkhoury/ReClassEx / ReClassPrintConsole

Function ReClassPrintConsole

ReClass/PluginAPI.cpp:334–354  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

332}
333
334VOID
335CDECL
336ReClassPrintConsole(
337 IN const wchar_t *Format,
338 ...
339)
340{
341 wchar_t Buffer[2048];
342 //ZeroMemory( Buffer, 2048 );
343
344 va_list Args;
345 va_start( Args, Format );
346 _vsnwprintf_s( Buffer, 2048, Format, Args );
347 va_end( Args );
348
349 #if defined(_UNICODE)
350 g_ReClassApp.m_pConsole->PrintText( Buffer );
351 #else
352 g_ReClassApp.m_pConsole->PrintText( CW2A( Buffer ) );
353 #endif
354}
355
356HANDLE
357PLUGIN_CC

Callers 2

PluginInitFunction · 0.85
PluginStateChangeFunction · 0.85

Calls 1

PrintTextMethod · 0.80

Tested by

no test coverage detected