25 lines
995 B
C
25 lines
995 B
C
/** @file
|
|
|
|
;******************************************************************************
|
|
;* Copyright (c) 2012, Insyde Software Corp. 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 _ACPI_HEADER_DEFAULT_VALUE_H
|
|
#define _ACPI_HEADER_DEFAULT_VALUE_H
|
|
|
|
|
|
#define EFI_ACPI_OEM_ID 'I','N','S','Y','D','E' // OEMID 6 bytes long
|
|
#define EFI_ACPI_OEM_TABLE_ID SIGNATURE_64('H','2','O',' ','B','I','O','S') // OEM Table Id 8 bytes long
|
|
#define EFI_ACPI_OEM_REVISION 0x00000001
|
|
#define EFI_ACPI_CREATOR_ID SIGNATURE_32('A','C','P','I')
|
|
#define EFI_ACPI_CREATOR_REVISION 0x00040000
|
|
|
|
#endif
|