| 214 | } |
| 215 | |
| 216 | VOID TerminateScreen(VOID) |
| 217 | { |
| 218 | // clear text screen |
| 219 | gST->ConOut->SetAttribute(gST->ConOut, ATTR_BANNER); |
| 220 | gST->ConOut->ClearScreen(gST->ConOut); |
| 221 | |
| 222 | // enable cursor |
| 223 | gST->ConOut->EnableCursor(gST->ConOut, TRUE); |
| 224 | } |
| 225 | |
| 226 | static VOID DrawScreenHeader(IN CONST CHAR16 *Title) |
| 227 | { |
no test coverage detected