MCPcopy Create free account
hub / github.com/MaxBelkov/visualsyslog / ReportMess

Function ReportMess

sourcecommon/utils.cpp:352–362  ·  view source on GitHub ↗

---------------------------------------------------------------------------

Source from the content-addressed store, hash-verified

350}
351//---------------------------------------------------------------------------
352void ReportMess(char *fmt, ...)
353{
354#ifndef SYSTEMSERVICE
355 char str[1000];
356 va_list argptr;
357 va_start(argptr, fmt);
358 wvsprintf(str, fmt, argptr);
359 va_end(argptr);
360 Application->MessageBox(String(str).c_str(), Application->Title.c_str(), MB_OK);
361#endif
362}
363//---------------------------------------------------------------------------
364bool ReportYesNo(char *fmt, ...)
365{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected