| 48 | const USHORT TRACEMGR_MSG_FAC = 25; |
| 49 | |
| 50 | void printMsg(USHORT number, const SafeArg& arg, bool newLine = true) |
| 51 | { |
| 52 | char buffer[256]; |
| 53 | fb_msg_format(NULL, TRACEMGR_MSG_FAC, number, sizeof(buffer), buffer, arg); |
| 54 | if (newLine) |
| 55 | printf("%s\n", buffer); |
| 56 | else |
| 57 | printf("%s", buffer); |
| 58 | } |
| 59 | |
| 60 | void printMsg(USHORT number, bool newLine = true) |
| 61 | { |
no test coverage detected