1 /*++ 2 3 Copyright (c) 2004, Intel Corporation. All rights reserved.<BR> 4 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 MonotonicCounter.h 15 16 Abstract: 17 18 Monotonic Counter Architectural Protocol as defined in DXE CIS 19 20 This code provides the services required to access the systems monotonic counter 21 22 --*/ 23 24 #ifndef _ARCH_PROTOCOL_MONTONIC_COUNTER_H_ 25 #define _ARCH_PROTOCOL_MONTONIC_COUNTER_H_ 26 27 // 28 // Global ID for the Monotonic Counter Architectural Protocol 29 // 30 #define EFI_MONTONIC_COUNTER_ARCH_PROTOCOL_GUID \ 31 {0x1da97072, 0xbddc, 0x4b30, {0x99, 0xf1, 0x72, 0xa0, 0xb5, 0x6f, 0xff, 0x2a}} 32 33 extern EFI_GUID gEfiMonotonicCounterArchProtocolGuid; 34 35 #endif 36