CommonHeader.h 966 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. /**@file
  2. Common header file shared by all source files.
  3. This file includes package header files, library classes and protocol, PPI & GUID definitions.
  4. Copyright (c) 2006 - 2019, Intel Corporation. All rights reserved.<BR>
  5. SPDX-License-Identifier: BSD-2-Clause-Patent
  6. **/
  7. #ifndef __COMMON_HEADER_H_
  8. #define __COMMON_HEADER_H_
  9. #include <PiDxe.h>
  10. #include <IndustryStandard/SmBios.h>
  11. #include <Protocol/Smbios.h>
  12. #include <Guid/MdeModuleHii.h>
  13. #include <Library/DebugLib.h>
  14. #include <Library/BaseMemoryLib.h>
  15. #include <Library/UefiDriverEntryPoint.h>
  16. #include <Library/UefiBootServicesTableLib.h>
  17. #include <Library/DevicePathLib.h>
  18. #include <Library/HiiLib.h>
  19. #include <Library/BaseLib.h>
  20. #include <Library/MemoryAllocationLib.h>
  21. #include <Library/PcdLib.h>
  22. #include <Library/UefiLib.h>
  23. #include <PchRegs.h>
  24. #include <Library/PchPlatformLib.h>
  25. #include <Library/PrintLib.h>
  26. #include "DataHubRecords.h"
  27. #endif