1 /** @file 2 Header file for Dxe Core Debug Agent Library instance. 3 4 Copyright (c) 2010 - 2018, Intel Corporation. All rights reserved.<BR> 5 SPDX-License-Identifier: BSD-2-Clause-Patent 6 7 **/ 8 9 #ifndef _DXE_CORE_DEBUG_AGENT_LIB_H_ 10 #define _DXE_CORE_DEBUG_AGENT_LIB_H_ 11 12 #include <PiDxe.h> 13 14 #include <Protocol/SerialIo.h> 15 #include <Protocol/DevicePath.h> 16 #include <Protocol/PiPcd.h> 17 18 #include <Library/UefiBootServicesTableLib.h> 19 #include <Library/UefiLib.h> 20 #include <Library/DevicePathLib.h> 21 #include <Library/MemoryAllocationLib.h> 22 23 #include "DebugAgent.h" 24 25 /** 26 Install EFI Serial IO protocol based on Debug Communication Library. 27 28 **/ 29 VOID 30 InstallSerialIo ( 31 VOID 32 ); 33 34 #endif 35