| 325 | // it can be a semitransparent rectangular at the screen centre as it was in Clover v1.0 |
| 326 | STATIC REFIT_MENU_SCREEN AlertMessageMenu(0, XStringW(), XStringW(), &MenuEntryReturn, NULL); |
| 327 | VOID AlertMessage(IN XStringW& Title, IN CONST XStringW& Message) |
| 328 | { |
| 329 | CreateInfoLines(Message, &AlertMessageMenu.InfoLines); |
| 330 | AlertMessageMenu.Title = Title; |
| 331 | AlertMessageMenu.RunMenu(NULL); |
| 332 | AlertMessageMenu.InfoLines.setEmpty(); |
| 333 | } |
| 334 | |
| 335 | #define TAG_YES 1 |
| 336 | #define TAG_NO 2 |
no test coverage detected