]> git.proxmox.com Git - mirror_edk2.git/blob - IntelFrameworkModulePkg/Include/Guid/DataHubStatusCodeRecord.h
Add comments for IntelFrameworkModulePkg Header file.
[mirror_edk2.git] / IntelFrameworkModulePkg / Include / Guid / DataHubStatusCodeRecord.h
1 /** @file
2 GUID used to identify Data Hub records logged by Status Code Runtime Protocol.
3
4 Copyright (c) 2006 - 2009, Intel Corporation
5 All rights reserved. This program and the accompanying materials
6 are licensed and made available under the terms and conditions of the BSD License
7 which accompanies this distribution. The full text of the license may be found at
8 http://opensource.org/licenses/bsd-license.php
9
10 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
11 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
12
13 **/
14
15
16 #ifndef __DATA_HUB_STATUS_CODE_RECORD_H__
17 #define __DATA_HUB_STATUS_CODE_RECORD_H__
18
19 #define EFI_DATA_HUB_STATUS_CODE_RECORD_GUID \
20 { \
21 0xd083e94c, 0x6560, 0x42e4, {0xb6, 0xd4, 0x2d, 0xf7, 0x5a, 0xdf, 0x6a, 0x2a } \
22 }
23
24 typedef struct {
25 ///
26 /// Status Code type to be reported.
27 ///
28 EFI_STATUS_CODE_TYPE CodeType;
29
30 ///
31 /// Valu information about the class and subclass is used to
32 /// classify the hardware and software entity as well as an operation.
33 ///
34 EFI_STATUS_CODE_VALUE Value;
35
36 ///
37 /// The enumeration of a hardware or software entity within
38 /// the system. Valid instance numbers start with 1
39 ///
40 UINT32 Instance;
41
42 ///
43 /// Identify the caller.
44 ///
45 EFI_GUID CallerId;
46
47 ///
48 /// Additional status code data
49 ///
50 EFI_STATUS_CODE_DATA Data;
51 } DATA_HUB_STATUS_CODE_DATA_RECORD;
52
53 extern EFI_GUID gEfiDataHubStatusCodeRecordGuid;
54
55 #endif