mirror of https://github.com/acidanthera/audk.git
23 lines
557 B
C
23 lines
557 B
C
/** @file
|
|
Head file for BDS Platform specific code
|
|
|
|
Copyright (c) 2004 - 2008, Intel Corporation. All rights reserved.<BR>
|
|
SPDX-License-Identifier: BSD-2-Clause-Patent
|
|
|
|
**/
|
|
|
|
#ifndef _BDS_PLATFORM_H_
|
|
#define _BDS_PLATFORM_H_
|
|
|
|
#include <Library/DebugLib.h>
|
|
#include <Library/BaseMemoryLib.h>
|
|
#include <Library/UefiBootServicesTableLib.h>
|
|
#include <Library/MemoryAllocationLib.h>
|
|
#include <Library/BaseLib.h>
|
|
#include <Library/PcdLib.h>
|
|
#include <Library/GenericBdsLib.h>
|
|
#include <Library/PlatformBdsLib.h>
|
|
|
|
|
|
#endif // _BDS_PLATFORM_H
|