OpenCore
1.0.4
OpenCore Bootloader
|
#include <Uefi.h>
#include <Library/OcDebugLogLib.h>
#include <Library/OcMiscLib.h>
#include <Library/UefiLib.h>
#include <Library/UefiBootServicesTableLib.h>
Go to the source code of this file.
Macros | |
#define | APP_TITLE L" <<<Font Tester>>> " |
#define | NROWS (8) |
#define | NCOLUMNS (16) |
#define | GAP (8) |
Functions | |
STATIC VOID | PauseSeconds (UINTN Seconds) |
STATIC VOID | PrintFontPage (UINT8 PageNumber, UINTN CursorColumn, UINTN CursorRow) |
UINTN | CentrePos (UINTN Width) |
VOID | Centre (CHAR16 *String) |
EFI_STATUS EFIAPI | UefiMain (IN EFI_HANDLE ImageHandle, IN EFI_SYSTEM_TABLE *SystemTable) |
Test implemented font pages.
Copyright (c) 2023, Mike Beaton. All rights reserved.
SPDX-License-Identifier: BSD-3-Clause
Definition in file FontTester.c.
#define APP_TITLE L" <<<Font Tester>>> " |
Definition at line 14 of file FontTester.c.
#define GAP (8) |
Definition at line 18 of file FontTester.c.
#define NCOLUMNS (16) |
Definition at line 17 of file FontTester.c.
#define NROWS (8) |
Definition at line 16 of file FontTester.c.
VOID Centre | ( | CHAR16 * | String | ) |
Definition at line 96 of file FontTester.c.
UINTN CentrePos | ( | UINTN | Width | ) |
Definition at line 70 of file FontTester.c.
STATIC VOID PauseSeconds | ( | UINTN | Seconds | ) |
Definition at line 22 of file FontTester.c.
STATIC VOID PrintFontPage | ( | UINT8 | PageNumber, |
UINTN | CursorColumn, | ||
UINTN | CursorRow ) |
Definition at line 38 of file FontTester.c.
EFI_STATUS EFIAPI UefiMain | ( | IN EFI_HANDLE | ImageHandle, |
IN EFI_SYSTEM_TABLE * | SystemTable ) |
Definition at line 114 of file FontTester.c.