mirror of https://github.com/acidanthera/audk.git
27 lines
691 B
C
27 lines
691 B
C
/**@file
|
|
Common header file shared by all source files.
|
|
|
|
This file includes package header files, library classes.
|
|
|
|
Copyright (c) 2010 - 2014, Intel Corporation. All rights reserved.<BR>
|
|
|
|
|
|
SPDX-License-Identifier: BSD-2-Clause-Patent
|
|
|
|
|
|
|
|
**/
|
|
|
|
#ifndef __COMMON_HEADER_H_
|
|
#define __COMMON_HEADER_H_
|
|
|
|
|
|
#include <Base.h>
|
|
#include <PchAccess.h>
|
|
|
|
#include <Library/SmbusLib.h>
|
|
#include <Library/IoLib.h>
|
|
#include <Library/PciLib.h>
|
|
#include <Library/DebugLib.h>
|
|
#include <Library/PcdLib.h>
|
|
|
|
#endif
|