1 /*++ 2 3 Copyright (c) 1999 - 2014, Intel Corporation. All rights reserved 4 5 This program and the accompanying materials are licensed and made available under 7 the terms and conditions of the BSD License that accompanies this distribution. 9 The full text of the license may be found at 11 http://opensource.org/licenses/bsd-license.php. 13 15 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, 17 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. 19 21 23 24 Module Name: 25 26 BiosId.h 27 28 Abstract: 29 30 GUIDs used for Bios ID. 31 32 --*/ 33 34 #ifndef _BIOS_ID_H_ 35 #define _BIOS_ID_H_ 36 37 38 #define EFI_BIOS_ID_GUID \ 39 { 0xC3E36D09, 0x8294, 0x4b97, 0xA8, 0x57, 0xD5, 0x28, 0x8F, 0xE3, 0x3E, 0x28 } 40 41 42 extern EFI_GUID gEfiBiosIdGuid; 43 44 #endif 45