33 lines
1.1 KiB
C
33 lines
1.1 KiB
C
/** @file
|
|
The Header file for Install SDEV ACPI Table driver.
|
|
|
|
;******************************************************************************
|
|
;* Copyright (c) 2018, Insyde Software Corporation. All Rights Reserved.
|
|
;*
|
|
;* You may not reproduce, distribute, publish, display, perform, modify, adapt,
|
|
;* transmit, broadcast, present, recite, release, license or otherwise exploit
|
|
;* any part of this publication in any form, by any means, without the prior
|
|
;* written permission of Insyde Software Corporation.
|
|
;*
|
|
;******************************************************************************
|
|
*/
|
|
|
|
#ifndef _INSTALL_SDEV_DXE_H_
|
|
#define _INSTALL_SDEV_DXE_H_
|
|
|
|
#include <Protocol/AcpiTable.h>
|
|
#include <Protocol/PublishAcpiTableDone.h>
|
|
#include <Protocol/AcpiSupport.h>
|
|
#include <Library/UefiLib.h>
|
|
#include <Library/UefiBootServicesTableLib.h>
|
|
#include <Library/DebugLib.h>
|
|
#include <Library/PcdLib.h>
|
|
#include <Library/H2OCpLib.h>
|
|
#include <Library/BaseMemoryLib.h>
|
|
#include <Library/MemoryAllocationLib.h>
|
|
#include <IndustryStandard/Acpi62.h>
|
|
#include <Guid/H2OCp.h>
|
|
#include <AcpiHeaderDefaultValue.h>
|
|
|
|
#endif
|