2007-06-19 18:55:24 +08:00
|
|
|
/** @file
|
2008-11-14 11:45:34 +08:00
|
|
|
Provides a service to retrieve a pointer to the EFI Runtime Services Table.
|
2008-11-25 15:38:54 +08:00
|
|
|
|
|
|
|
This library does not contain any functions or macros. It simply exports the
|
|
|
|
global variable gRT that is a pointer to the EFI Runtime Services Table as defined
|
|
|
|
in the UEFI Specification. The global variable gRT must be preinitialized to NULL.
|
|
|
|
The library constructor must set gRT to point at the EFI Runtime Services Table so
|
|
|
|
it is available at the module's entry point. Since there is overhead in initializing
|
|
|
|
this global variable, only those modules that actually require access to the EFI
|
|
|
|
Runtime Services Table should use this library.
|
2008-11-14 11:45:34 +08:00
|
|
|
Only available to DXE and UEFI module types.
|
2007-06-19 18:55:24 +08:00
|
|
|
|
2010-04-23 23:46:20 +08:00
|
|
|
Copyright (c) 2006 - 2008, Intel Corporation. All rights reserved.<BR>
|
2019-04-04 07:06:00 +08:00
|
|
|
SPDX-License-Identifier: BSD-2-Clause-Patent
|
2007-06-19 18:55:24 +08:00
|
|
|
|
|
|
|
**/
|
|
|
|
|
|
|
|
#ifndef __UEFI_RUNTIME_SERVICES_TABLE_LIB_H__
|
|
|
|
#define __UEFI_RUNTIME_SERVICES_TABLE_LIB_H__
|
|
|
|
|
2008-08-14 11:30:12 +08:00
|
|
|
///
|
|
|
|
/// Cached copy of the EFI Runtime Services Table
|
|
|
|
///
|
2007-06-19 18:55:24 +08:00
|
|
|
extern EFI_RUNTIME_SERVICES *gRT;
|
|
|
|
|
|
|
|
#endif
|