Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

46 lines
768 B

#ifndef __EFITIMEFUNC__
#define __EFITIMEFUNC__
/*++
Copyright (c) 1999 Microsoft Corporation
Module Name:
efitimefunc.hxx
Abstract:
This contains declarations of time related functions for efilib so we don't
need any of windows.h.
Revision History:
--*/
// taken from \nt\private\ntos\rtl\time.c
BOOLEAN
RtlTimeFieldsToTime (
IN PTIME_FIELDS TimeFields,
OUT PLARGE_INTEGER Time
);
VOID
RtlTimeToTimeFields (
IN PLARGE_INTEGER Time,
OUT PTIME_FIELDS TimeFields
);
NTSTATUS
RtlSystemTimeToLocalTime (
IN PLARGE_INTEGER SystemTime,
OUT PLARGE_INTEGER LocalTime
);
NTSTATUS
EfiQuerySystemTime(
OUT PLARGE_INTEGER SystemTime
);
#endif // __EFITIMEFUNC__