3
Copyright (c) 1998 Intel Corporation
11
EFI library global data
23
// These globals are runtime globals
25
// N.B. The Microsoft C compiler will only put the data in the
26
// right data section if it is explicitly initialized..
29
#pragma BEGIN_RUNTIME_DATA()
32
// RT - pointer to the runtime table
35
EFI_RUNTIME_SERVICES *RT;
38
// LibStandalone - TRUE if lib is linked in as part of the firmware.
39
// N.B. The EFI fw sets this value directly
42
BOOLEAN LibFwInstance;
45
// EFIDebug - Debug mask
48
UINTN EFIDebug = EFI_DBUG_MASK;
51
// LibRuntimeDebugOut - Runtime Debug Output device
54
SIMPLE_TEXT_OUTPUT_INTERFACE *LibRuntimeDebugOut;
57
// LibRuntimeRaiseTPL, LibRuntimeRestoreTPL - pointers to Runtime functions from the
58
// Boot Services Table
61
EFI_RAISE_TPL LibRuntimeRaiseTPL = NULL;
62
EFI_RESTORE_TPL LibRuntimeRestoreTPL = NULL;