MtcVendor.h revision 342742
1/* $FreeBSD: head/stand/efi/include/Guid/MtcVendor.h 342742 2019-01-03 20:27:50Z tsoome $ */
2/** @file
3  GUID is for MTC variable.
4
5Copyright (c) 2011, Intel Corporation. All rights reserved.<BR>
6This program and the accompanying materials are licensed and made available under
7the terms and conditions of the BSD License that accompanies this distribution.
8The full text of the license may be found at
9http://opensource.org/licenses/bsd-license.php.
10
11THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
12WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
13
14**/
15
16#ifndef __MTC_VENDOR_GUID_H__
17#define __MTC_VENDOR_GUID_H__
18
19//
20// Vendor GUID of the variable for the high part of monotonic counter (UINT32).
21//
22#define MTC_VENDOR_GUID \
23  { 0xeb704011, 0x1402, 0x11d3, { 0x8e, 0x77, 0x0, 0xa0, 0xc9, 0x69, 0x72, 0x3b } }
24
25//
26// Name of the variable for the high part of monotonic counter
27//
28#define MTC_VARIABLE_NAME "MTC"
29
30extern EFI_GUID gMtcVendorGuid;
31
32#endif
33