1342742Stsoome/* $FreeBSD: stable/11/stand/efi/include/Guid/MtcVendor.h 342742 2019-01-03 20:27:50Z tsoome $ */
2342742Stsoome/** @file
3342742Stsoome  GUID is for MTC variable.
4342742Stsoome
5342742StsoomeCopyright (c) 2011, Intel Corporation. All rights reserved.<BR>
6342742StsoomeThis program and the accompanying materials are licensed and made available under
7342742Stsoomethe terms and conditions of the BSD License that accompanies this distribution.
8342742StsoomeThe full text of the license may be found at
9342742Stsoomehttp://opensource.org/licenses/bsd-license.php.
10342742Stsoome
11342742StsoomeTHE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
12342742StsoomeWITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
13342742Stsoome
14342742Stsoome**/
15342742Stsoome
16342742Stsoome#ifndef __MTC_VENDOR_GUID_H__
17342742Stsoome#define __MTC_VENDOR_GUID_H__
18342742Stsoome
19342742Stsoome//
20342742Stsoome// Vendor GUID of the variable for the high part of monotonic counter (UINT32).
21342742Stsoome//
22342742Stsoome#define MTC_VENDOR_GUID \
23342742Stsoome  { 0xeb704011, 0x1402, 0x11d3, { 0x8e, 0x77, 0x0, 0xa0, 0xc9, 0x69, 0x72, 0x3b } }
24342742Stsoome
25342742Stsoome//
26342742Stsoome// Name of the variable for the high part of monotonic counter
27342742Stsoome//
28342742Stsoome#define MTC_VARIABLE_NAME "MTC"
29342742Stsoome
30342742Stsoomeextern EFI_GUID gMtcVendorGuid;
31342742Stsoome
32342742Stsoome#endif
33