1 | ## @file
|
---|
2 | # UEFI Boot Services Table Library implementation.
|
---|
3 | #
|
---|
4 | # Copyright (c) 2007 - 2018, Intel Corporation. All rights reserved.<BR>
|
---|
5 | #
|
---|
6 | # SPDX-License-Identifier: BSD-2-Clause-Patent
|
---|
7 | #
|
---|
8 | #
|
---|
9 | ##
|
---|
10 |
|
---|
11 | [Defines]
|
---|
12 | INF_VERSION = 0x00010005
|
---|
13 | BASE_NAME = UefiBootServicesTableLib
|
---|
14 | MODULE_UNI_FILE = UefiBootServicesTableLib.uni
|
---|
15 | FILE_GUID = ff5c7a2c-ab7a-4366-8616-11c6e53247b6
|
---|
16 | MODULE_TYPE = UEFI_DRIVER
|
---|
17 | VERSION_STRING = 1.0
|
---|
18 | LIBRARY_CLASS = UefiBootServicesTableLib|DXE_CORE DXE_DRIVER DXE_RUNTIME_DRIVER DXE_SMM_DRIVER UEFI_APPLICATION UEFI_DRIVER SMM_CORE
|
---|
19 |
|
---|
20 | CONSTRUCTOR = UefiBootServicesTableLibConstructor
|
---|
21 |
|
---|
22 | #
|
---|
23 | # VALID_ARCHITECTURES = IA32 X64 EBC
|
---|
24 | #
|
---|
25 |
|
---|
26 | [Sources]
|
---|
27 | UefiBootServicesTableLib.c
|
---|
28 |
|
---|
29 | [Packages]
|
---|
30 | MdePkg/MdePkg.dec
|
---|
31 |
|
---|
32 |
|
---|
33 | [LibraryClasses]
|
---|
34 | DebugLib
|
---|
35 |
|
---|