| 249 | } |
| 250 | |
| 251 | void DisplayFormatMessage(const char* title, |
| 252 | const char* fmtcontents, |
| 253 | ...) { |
| 254 | static const int kBufSize = 2048; |
| 255 | char mess_buf[kBufSize]; |
| 256 | va_list args; |
| 257 | va_start(args, fmtcontents); |
| 258 | VFormatString(mess_buf, kBufSize, fmtcontents, args); |
| 259 | va_end(args); |
| 260 | return DisplayMessage(title, mess_buf); |
| 261 | } |
| 262 | |
| 263 | void DisplayMessage(const char* title, |
| 264 | const char* contents) { |
no test coverage detected