MCPcopy Create free account
hub / github.com/FrameworkComputer/framework-system / enable_page_break

Function enable_page_break

framework_lib/src/fw_uefi/mod.rs:68–71  ·  view source on GitHub ↗

Enable pagination in UEFI shell Pagination is handled by the UEFI shell environment automatically, whenever the application prints more than fits on the screen.

()

Source from the content-addressed store, hash-verified

66/// Pagination is handled by the UEFI shell environment automatically, whenever
67/// the application prints more than fits on the screen.
68pub 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)
74const SMBIOS_V2_EP_SIZE: usize = 31;

Callers 1

run_with_argsFunction · 0.85

Calls 1

get_shell_protocolFunction · 0.70

Tested by

no test coverage detected