]> git.proxmox.com Git - mirror_edk2.git/blob - EdkCompatibilityPkg/Foundation/Framework/Guid/DataHubRecords/DataHubRecords.h
baaf1819cc5558081b039f87faa8905265da5263
[mirror_edk2.git] / EdkCompatibilityPkg / Foundation / Framework / Guid / DataHubRecords / DataHubRecords.h
1 /*++
2
3 Copyright (c) 2004, Intel Corporation
4 All rights reserved. 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.h
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 #ifndef _DATAHUB_RECORDS_H_
30 #define _DATAHUB_RECORDS_H_
31
32
33 #include "EfiInternalFormRepresentation.h"
34 #include "DataHubSubClass.h"
35 #include "DataHubSubClassProcessor.h"
36 #include "DataHubSubClassCache.h"
37 #include "DataHubSubClassMemory.h"
38 #include "DataHubSubClassMisc.h"
39
40 /*++
41 BEGIN: Processor records definitions
42 --*/
43
44 extern EFI_GUID gProcessorProducerGuid;
45
46 #define EFI_PROCESSOR_PRODUCER_GUID \
47 { 0x1bf06aea, 0x5bec, 0x4a8d, 0x95, 0x76, 0x74, 0x9b, 0x09, 0x56, 0x2d, 0x30 }
48
49
50 extern EFI_GUID gProcessorSubClassName;
51
52
53 extern EFI_GUID gCacheSubClassName;
54
55
56 extern EFI_GUID gMiscSubClassName;
57
58 /*++
59 END: Processor records definitions
60 --*/
61
62
63
64 /*++
65 BEGIN: Memory records definitions
66 --*/
67
68 extern EFI_GUID gMemoryProducerGuid;
69
70 #define EFI_MEMORY_PRODUCER_GUID \
71 { 0x1d7add6e, 0xb2da, 0x4b0b, 0xb2, 0x9f, 0x49, 0xcb, 0x42, 0xf4, 0x63, 0x56 }
72
73 //
74 // ... need memory sub classes here...
75 //
76 extern EFI_GUID gEfiMemorySubClassGuid;
77
78
79
80 /*++
81 END: Memory records definitions
82 --*/
83
84
85 /*++
86 BEGIN: Misc records definitions
87 --*/
88
89 extern EFI_GUID gMiscProducerGuid;
90
91 #define EFI_MISC_PRODUCER_GUID \
92 { 0x62512c92, 0x63c4, 0x4d80, 0x82, 0xb1, 0xc1, 0xa4, 0xdc, 0x44, 0x80, 0xe5 }
93
94
95
96 //
97 // ... need misc sub classes here...
98 //
99 extern EFI_GUID gEfiMiscSubClassGuid;
100
101
102
103
104 /*++
105 END: Misc records definitions
106 --*/
107
108
109 #endif