| 2 | #include "ui_mainwindow.h" |
| 3 | |
| 4 | VOID |
| 5 | pmlog ( |
| 6 | const char* format, |
| 7 | ... |
| 8 | ) |
| 9 | { |
| 10 | va_list vargs; |
| 11 | va_start(vargs, format); |
| 12 | printf("[PeaceMaker] "); |
| 13 | vprintf(format, vargs); |
| 14 | printf("\n"); |
| 15 | va_end(vargs); |
| 16 | } |
| 17 | |
| 18 | /** |
| 19 | * @brief MainWindow::InitializeCommonTable - Common initialization across all tables. |
no outgoing calls
no test coverage detected