| 1871 | |
| 1872 | |
| 1873 | void BURP_message(USHORT number, const MsgFormat::SafeArg& arg, bool totals) |
| 1874 | { |
| 1875 | /************************************** |
| 1876 | * |
| 1877 | * B U R P _ m e s s a g e |
| 1878 | * |
| 1879 | ************************************** |
| 1880 | * |
| 1881 | * Functional description |
| 1882 | * Calls BURP_msg for formatting & displaying a message. |
| 1883 | * |
| 1884 | **************************************/ |
| 1885 | BurpMaster master; |
| 1886 | BurpGlobals* tdgbl = master.get(); |
| 1887 | |
| 1888 | if (totals) |
| 1889 | tdgbl->print_stats_header(); |
| 1890 | BURP_msg_partial(false, 169); // msg 169: gbak: |
| 1891 | if (totals) |
| 1892 | tdgbl->print_stats(number); |
| 1893 | BURP_msg_put(false, number, arg); |
| 1894 | } |
| 1895 | |
| 1896 | |
| 1897 | void BURP_verbose(USHORT number, const char* str) |
no test coverage detected