Enable pagination in UEFI shell Pagination is handled by the UEFI shell environment automatically, whenever the application prints more than fits on the screen.
()
| 66 | /// Pagination is handled by the UEFI shell environment automatically, whenever |
| 67 | /// the application prints more than fits on the screen. |
| 68 | pub fn enable_page_break() { |
| 69 | let shell = get_shell_protocol(); |
| 70 | unsafe { (shell.enable_page_break)() } |
| 71 | } |
| 72 | |
| 73 | /// Size of SMBIOS v2 entry point structure (31 bytes) |
| 74 | const SMBIOS_V2_EP_SIZE: usize = 31; |
no test coverage detected