---------------------------------------------------------------------------
| 350 | } |
| 351 | //--------------------------------------------------------------------------- |
| 352 | void 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 | //--------------------------------------------------------------------------- |
| 364 | bool ReportYesNo(char *fmt, ...) |
| 365 | { |
nothing calls this directly
no outgoing calls
no test coverage detected