|
|
//+---------------------------------------------------------------------------
//
// Microsoft Windows
// Copyright (C) Microsoft Corporation, 1992 - 1993.
//
// File: time.hxx
//
// Contents: Time/date common routines.
//
// History: 08-Sep-95 EricB Created.
// 01-Dec-95 MarkBl Split from util.hxx.
//
//----------------------------------------------------------------------------
#ifndef __TIME_HXX__
#define __TIME_HXX__
//#include "runobj.hxx"
//
// Time/date constants
//
const WORD JOB_MIN_MONTH = 1; const WORD JOB_MAX_MONTH = 12; const WORD JOB_MONTHS_PER_YEAR = JOB_MAX_MONTH ; const WORD JOB_MIN_DAY = 1; const WORD JOB_MAX_DAY = 31; const WORD JOB_DAYS_PER_MONTHMAX = JOB_MAX_DAY; const WORD JOB_MIN_HOUR = 0; const WORD JOB_MAX_HOUR = 23; const WORD JOB_MIN_MINUTE = 0; const WORD JOB_MAX_MINUTE = 59; const WORD JOB_MILLISECONDS_PER_SECOND = 1000; const WORD JOB_MILLISECONDS_PER_MINUTE = 60 * JOB_MILLISECONDS_PER_SECOND; const WORD JOB_MINS_PER_HOUR = 60; const WORD JOB_HOURS_PER_DAY = 24; const WORD JOB_MINS_PER_DAY = JOB_HOURS_PER_DAY * JOB_MINS_PER_HOUR; const WORD JOB_DAYS_PER_WEEK = 7; const DWORD JOB_RGFDAYS_MAX = 0x7fffffff; const WORD JOB_RGFDOW_MAX = 0x7f; const WORD JOB_RGFMONTHS_MAX = 0xfff; const WORD JOB_MONTH_FEBRUARY = 2; const int JOB_TIMEBUF_LEN = 40; const short MAX_INTERVAL_MINUTES = 720; const short MAX_INTERVAL_HOURS = 12;
const unsigned long FILETIMES_PER_MILLISECOND = 10000; const DWORD FILETIMES_PER_SECOND = JOB_MILLISECONDS_PER_SECOND * FILETIMES_PER_MILLISECOND; const DWORD FILETIMES_PER_MINUTE = FILETIMES_PER_MILLISECOND * JOB_MILLISECONDS_PER_MINUTE; //
// BUGBUG: neither of these are currently working without CRT initialization.
// BUG # 37752.
//
//const __int64 FILETIMES_PER_HOUR = (__int64)FILETIMES_PER_MINUTE
// * JOB_MINS_PER_HOUR;
//const __int64 FILETIMES_PER_DAY = FILETIMES_PER_HOUR * JOB_HOURS_PER_DAY;
//
// Logically, this should be MAX_FILETIME = { MAXDWORD, MAXDWORD };
// but CompareFileTime on NT 4 is broken for FILETIMEs larger than the
// one below (NT bug 88901).
// Also, the FILETIME below is the largest FILETIME accepted by
// FileTimeToSystemTime().
//
const FILETIME MAX_FILETIME = { MAXULONG, 0x7fffffff };
const BYTE g_rgMonthDays[] = { 0, // make January's index 1
31, // January
28, // February
31, // March
30, // April
31, // May
30, // June
31, // July
31, // August
30, // September
31, // October
30, // November
31 // December
};
//
// Time/date common routines.
//
HRESULT MonthDays(WORD wMonth, WORD wYear, WORD *pwDays); BOOL IsLeapYear(WORD wYear); BOOL IsValidDate(WORD wMonth, WORD wDay, WORD wYear);
//+----------------------------------------------------------------------------
//
// Function: IsFirstDateEarlier
//
// Synopsis: Compares the date portion of the two params
//
// Arguments: [pstFirst, pstSecond] - the dates to compare
//
// Returns: TRUE if the first date is earlier than the second
//
//-----------------------------------------------------------------------------
inline BOOL IsFirstDateEarlier(const SYSTEMTIME * pstFirst, const SYSTEMTIME * pstSecond) { if (pstFirst->wYear > pstSecond->wYear || (pstFirst->wYear == pstSecond->wYear && (pstFirst->wMonth > pstSecond->wMonth || (pstFirst->wMonth == pstSecond->wMonth && pstFirst->wDay >= pstSecond->wDay)))) { return FALSE; } return TRUE; }
//+----------------------------------------------------------------------------
//
// Function: IsFirstTimeEarlier
//
// Synopsis: Compares two SYSTEMTIMES
//
// Arguments: [pstFirst, pstSecond] - the dates to compare
//
// Returns: TRUE if the first date-time is earlier than the second
//
//-----------------------------------------------------------------------------
inline BOOL IsFirstTimeEarlier(const SYSTEMTIME *pstFirst, const SYSTEMTIME *pstSecond) { FILETIME ftFirst, ftSecond; SystemTimeToFileTime(pstFirst, &ftFirst); SystemTimeToFileTime(pstSecond, &ftSecond); return (CompareFileTime(&ftFirst, &ftSecond) < 0); }
//+----------------------------------------------------------------------------
//
// Function: IncrementMonth
//
// Synopsis: increases the SYSTEMTIME month value by one and corrects for
// overflow
//
// Arguments: [pst] - the date to increment
//
//-----------------------------------------------------------------------------
inline void IncrementMonth(LPSYSTEMTIME pst) { if (pst->wMonth < JOB_MONTHS_PER_YEAR) { pst->wMonth++; } else { pst->wMonth = 1; pst->wYear++; } }
//+----------------------------------------------------------------------------
//
// Function: IncrementDau
//
// Synopsis: increases the SYSTEMTIME day value by one and corrects for
// overflow
//
// Arguments: [pst] - the date to increment
//
//-----------------------------------------------------------------------------
void IncrementDay(LPSYSTEMTIME pst);
#endif // __TIME_HXX__
|