RealTimeClock.h revision 4fd606d1f5abe38e1f42c38de1d2e895166bd0f4
2N/A/** @file
2N/A Real Time clock Architectural Protocol as defined in PI Specification VOLUME 2 DXE
2N/A
2N/A This code abstracts time and data functions. Used to provide
2N/A Time and date related EFI runtime services.
2N/A
2N/A The GetTime (), SetTime (), GetWakeupTime (), and SetWakeupTime () UEFI 2.0
2N/A services are added to the EFI system table and the
2N/A EFI_REAL_TIME_CLOCK_ARCH_PROTOCOL_GUID protocol is registered with a NULL
2N/A pointer.
2N/A
2N/A No CRC of the EFI system table is required, since that is done in the DXE core.
2N/A
2N/A Copyright (c) 2006 - 2009, Intel Corporation. All rights reserved.<BR>
2N/A This program and the accompanying materials
2N/A are licensed and made available under the terms and conditions of the BSD License
2N/A which accompanies this distribution. The full text of the license may be found at
2N/A http://opensource.org/licenses/bsd-license.php
2N/A
2N/A THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
2N/A WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
2N/A
2N/A**/
2N/A
2N/A#ifndef __ARCH_PROTOCOL_REAL_TIME_CLOCK_H__
2N/A#define __ARCH_PROTOCOL_REAL_TIME_CLOCK_H__
2N/A
2N/A///
2N/A/// Global ID for the Real Time Clock Architectural Protocol
2N/A///
2N/A#define EFI_REAL_TIME_CLOCK_ARCH_PROTOCOL_GUID \
2N/A { 0x27CFAC87, 0x46CC, 0x11d4, {0x9A, 0x38, 0x00, 0x90, 0x27, 0x3F, 0xC1, 0x4D } }
2N/A
2N/Aextern EFI_GUID gEfiRealTimeClockArchProtocolGuid;
2N/A
2N/A#endif
2N/A