Home | History | Annotate | Download | only in DataHubRecords
      1 /*++
      2 
      3 Copyright (c) 2004, Intel Corporation. All rights reserved.<BR>
      4 This program and the accompanying materials
      5 are licensed and made available under the terms and conditions of the BSD License
      6 which accompanies this distribution.  The full text of the license may be found at
      7 http://opensource.org/licenses/bsd-license.php
      8 
      9 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
     10 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
     11 
     12 Module Name:
     13 
     14     DataHubRecords.c
     15 
     16 Abstract:
     17 
     18     This file defines GUIDs and associated data structures for records
     19     posted to the Data Hub.
     20     The producers of these records use these definitions to construct
     21     records.
     22     The consumers of these records use these definitions to retrieve,
     23     filter and parse records.
     24 
     25     For more information please look at DataHub.doc
     26 
     27 --*/
     28 
     29 
     30 
     31 #include "Tiano.h"
     32 #include EFI_GUID_DEFINITION (DataHubRecords)
     33 
     34 EFI_GUID gProcessorProducerGuid = EFI_PROCESSOR_PRODUCER_GUID;
     35 
     36 EFI_GUID gProcessorSubClassName = EFI_PROCESSOR_SUBCLASS_GUID;
     37 
     38 EFI_GUID gCacheSubClassName     = EFI_CACHE_SUBCLASS_GUID;
     39 
     40 EFI_GUID gMiscProducerGuid      = EFI_MISC_PRODUCER_GUID;
     41 EFI_GUID gMiscSubClassName      = EFI_MISC_SUBCLASS_GUID;
     42 EFI_GUID gEfiMiscSubClassGuid   = EFI_MISC_SUBCLASS_GUID;
     43 
     44 
     45 EFI_GUID gMemoryProducerGuid    = EFI_MEMORY_PRODUCER_GUID;
     46 
     47 EFI_GUID  gEfiMemorySubClassGuid = EFI_MEMORY_SUBCLASS_GUID;
     48 
     49 
     50 
     51 /* eof - DataHubRecords.c */
     52