| 332 | } |
| 333 | |
| 334 | VOID |
| 335 | CDECL |
| 336 | ReClassPrintConsole( |
| 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 | |
| 356 | HANDLE |
| 357 | PLUGIN_CC |
no test coverage detected