| 1677 | |
| 1678 | |
| 1679 | void BURP_msg_get(USHORT number, TEXT* output_msg, const SafeArg& arg) |
| 1680 | { |
| 1681 | /************************************** |
| 1682 | * |
| 1683 | * B U R P _ m s g _ g e t |
| 1684 | * |
| 1685 | ************************************** |
| 1686 | * |
| 1687 | * Functional description |
| 1688 | * Retrieve a message from the error file, format it and copy it to the buffer |
| 1689 | * |
| 1690 | **************************************/ |
| 1691 | TEXT buffer[BURP_MSG_GET_SIZE]; |
| 1692 | |
| 1693 | fb_msg_format(NULL, burp_msg_fac, number, sizeof(buffer), buffer, arg); |
| 1694 | strcpy(output_msg, buffer); |
| 1695 | } |
| 1696 | |
| 1697 | void OutputVersion::callback(Firebird::CheckStatusWrapper* status, const char* text) |
| 1698 | { |
no test coverage detected