| 800 | #endif |
| 801 | |
| 802 | static void |
| 803 | mustGetMenuAlerts() |
| 804 | { |
| 805 | short i; |
| 806 | Rect **hRct; |
| 807 | |
| 808 | for (i = alrt_Menu_start; i < alrt_Menu_limit; i++) { |
| 809 | if (!(hRct = (Rect **) GetResource('ALRT', i))) /* AlertTHndl */ |
| 810 | { |
| 811 | for (i = 0; i < beepMenuAlertErr; i++) |
| 812 | SysBeep(3); |
| 813 | ExitToShell(); |
| 814 | } |
| 815 | |
| 816 | #if !TARGET_API_MAC_CARBON |
| 817 | alignAD(*hRct, GetMBarHeight()); |
| 818 | #endif |
| 819 | } |
| 820 | } |
| 821 | |
| 822 | static void |
| 823 | menuError(short menuErr) |
no test coverage detected