| 1658 | |
| 1659 | |
| 1660 | void BURP_msg_put(bool err, USHORT number, const SafeArg& arg) |
| 1661 | { |
| 1662 | /************************************** |
| 1663 | * |
| 1664 | * B U R P _ m s g _ p u t |
| 1665 | * |
| 1666 | ************************************** |
| 1667 | * |
| 1668 | * Functional description |
| 1669 | * Retrieve a message from the error file, format it, and print it. |
| 1670 | * |
| 1671 | **************************************/ |
| 1672 | TEXT buffer[256]; |
| 1673 | |
| 1674 | fb_msg_format(NULL, burp_msg_fac, number, sizeof(buffer), buffer, arg); |
| 1675 | burp_output(err, "%s\n", buffer); |
| 1676 | } |
| 1677 | |
| 1678 | |
| 1679 | void BURP_msg_get(USHORT number, TEXT* output_msg, const SafeArg& arg) |
no test coverage detected