]> git.proxmox.com Git - mirror_edk2.git/blob - IntelFrameworkModulePkg/Include/Guid/DataHubStatusCodeRecord.h
Add comments for Include header files
[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 __STATUS_CODE_H__
17 #define __STATUS_CODE_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 EFI_STATUS_CODE_TYPE CodeType;
26 EFI_STATUS_CODE_VALUE Value;
27 UINT32 Instance;
28 EFI_GUID CallerId;
29 EFI_STATUS_CODE_DATA Data;
30 } DATA_HUB_STATUS_CODE_DATA_RECORD;
31
32 extern EFI_GUID gEfiDataHubStatusCodeRecordGuid;
33
34 #endif // __STATUS_CODE_H__
35