00001 /** @file 00002 GUIDs used to locate the SMBIOS tables in the UEFI 2.0 system table. 00003 00004 This GUID in the system table is the only legal way to search for and 00005 locate the SMBIOS tables. Do not search the 0xF0000 segment to find SMBIOS 00006 tables. 00007 00008 Copyright (c) 2006, Intel Corporation 00009 All rights reserved. This program and the accompanying materials 00010 are licensed and made available under the terms and conditions of the BSD License 00011 which accompanies this distribution. The full text of the license may be found at 00012 http://opensource.org/licenses/bsd-license.php 00013 00014 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, 00015 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. 00016 00017 @par Revision Reference: 00018 GUIDs defined in UEFI 2.0 spec. 00019 00020 **/ 00021 00022 #ifndef __SMBIOS_GUID_H__ 00023 #define __SMBIOS_GUID_H__ 00024 00025 #define EFI_SMBIOS_TABLE_GUID \ 00026 { \ 00027 0xeb9d2d31, 0x2d88, 0x11d3, {0x9a, 0x16, 0x0, 0x90, 0x27, 0x3f, 0xc1, 0x4d } \ 00028 } 00029 00030 #define SMBIOS_TABLE_GUID EFI_SMBIOS_TABLE_GUID 00031 00032 extern EFI_GUID gEfiSmbiosTableGuid; 00033 00034 #endif
1.5.7.1