| 693 | // |
| 694 | |
| 695 | void ALICE_error(USHORT number, const SafeArg& arg) |
| 696 | { |
| 697 | AliceGlobals* tdgbl = AliceGlobals::getSpecific(); |
| 698 | TEXT buffer[256]; |
| 699 | |
| 700 | tdgbl->uSvc->getStatusAccessor().setServiceStatus(ALICE_MSG_FAC, number, arg); |
| 701 | if (!tdgbl->uSvc->isService()) |
| 702 | { |
| 703 | fb_msg_format(0, ALICE_MSG_FAC, number, sizeof(buffer), buffer, arg); |
| 704 | alice_output(true, "%s\n", buffer); |
| 705 | } |
| 706 | |
| 707 | ALICE_exit(FINI_ERROR, tdgbl); |
| 708 | } |
| 709 | |
| 710 | |
| 711 | //____________________________________________________________ |
no test coverage detected