1/** @file 2 Provides a service to retrieve a pointer to the EFI Boot Services Table. 3 Only available to DXE and UEFI module types. 4 5Copyright (c) 2006 - 2008, Intel Corporation. All rights reserved.<BR> 6SPDX-License-Identifier: BSD-2-Clause-Patent 7 8**/ 9 10#ifndef __UEFI_BOOT_SERVICES_TABLE_LIB_H__ 11#define __UEFI_BOOT_SERVICES_TABLE_LIB_H__ 12 13/// 14/// Cache the Image Handle 15/// 16extern EFI_HANDLE gImageHandle; 17 18/// 19/// Cache pointer to the EFI System Table 20/// 21extern EFI_SYSTEM_TABLE *gST; 22 23/// 24/// Cache pointer to the EFI Boot Services Table 25/// 26extern EFI_BOOT_SERVICES *gBS; 27 28#endif 29 30