2011-05-11 20:31:20 +02:00
|
|
|
## @file
|
|
|
|
# A library to produce the global variable 'gEmuThunk'
|
|
|
|
#
|
2011-06-28 18:50:26 +02:00
|
|
|
# This library contains a single global variable 'gEmuThunk' along with a constructor to
|
2011-05-11 20:31:20 +02:00
|
|
|
# initialize that global.
|
|
|
|
# Copyright (c) 2006 - 2010, Intel Corporation. All rights reserved.<BR>
|
2011-06-28 18:50:26 +02:00
|
|
|
# Portions copyright (c) 2011, Apple Inc. All rights reserved.
|
2011-05-11 20:31:20 +02:00
|
|
|
#
|
2019-04-04 01:03:44 +02:00
|
|
|
# SPDX-License-Identifier: BSD-2-Clause-Patent
|
2011-05-11 20:31:20 +02:00
|
|
|
#
|
|
|
|
#
|
|
|
|
##
|
|
|
|
|
|
|
|
[Defines]
|
|
|
|
INF_VERSION = 0x00010005
|
|
|
|
BASE_NAME = DxeEmuLib
|
|
|
|
FILE_GUID = 31479AFD-B06F-4E4A-863B-A8F7E7710778
|
|
|
|
MODULE_TYPE = DXE_DRIVER
|
|
|
|
VERSION_STRING = 1.0
|
2011-06-28 18:50:26 +02:00
|
|
|
LIBRARY_CLASS = EmuThunkLib
|
2011-05-11 20:31:20 +02:00
|
|
|
|
|
|
|
CONSTRUCTOR = DxeEmuLibConstructor
|
|
|
|
|
|
|
|
|
|
|
|
[Sources]
|
|
|
|
DxeEmuLib.c
|
|
|
|
|
|
|
|
|
|
|
|
[Packages]
|
|
|
|
MdePkg/MdePkg.dec
|
2011-06-28 18:47:23 +02:00
|
|
|
EmulatorPkg/EmulatorPkg.dec
|
2011-05-11 20:31:20 +02:00
|
|
|
|
|
|
|
[LibraryClasses]
|
|
|
|
HobLib
|
|
|
|
DebugLib
|
2011-05-13 02:03:26 +02:00
|
|
|
BaseMemoryLib
|
2011-05-11 20:31:20 +02:00
|
|
|
|
|
|
|
|
|
|
|
[Protocols]
|
|
|
|
gEmuThunkProtocolGuid # PROTOCOL ALWAYS_CONSUMED
|
|
|
|
|