B U R P _ e x i t _ l o c a l Raises an exception when the old SEH system would jump to another place.
| 1630 | // Raises an exception when the old SEH system would jump to another place. |
| 1631 | // ********************************** |
| 1632 | void BURP_exit_local(int code, BurpGlobals* tdgbl) |
| 1633 | { |
| 1634 | tdgbl->exit_code = code; |
| 1635 | if (tdgbl->burp_throw) |
| 1636 | throw Firebird::LongJump(); |
| 1637 | } |
| 1638 | |
| 1639 | |
| 1640 | void BURP_msg_partial(bool err, USHORT number, const SafeArg& arg) |
no test coverage detected