ESS_TIMERECORD_T

typedef struct ESS_TIMERECORD_T
{
   ESS_TIME_T   TimeValue; 
   ESS_USHORT_T Seconds;   
   ESS_USHORT_T Minutes;   
   ESS_USHORT_T Hours;     
   ESS_USHORT_T Day;       
   ESS_USHORT_T Month;     
   ESS_USHORT_T Year;      
   ESS_USHORT_T Weekday;   
} ESS_TIMERECORD_T, *ESS_PTIMERECORD_T;

Used in the ESS_DBREQINFO_T structure. The times expressed in this structure are usually server times. The fields are:

Data TypeFieldDescription
ESS_TIME_TTimeValueTime value in seconds after 1/1/70
ESS_USHORT_TSecondsSeconds after the minute. Values: 0-59.
ESS_USHORT_TMinutesMinutes after the hour. Values: 0-59.
ESS_USHORT_THoursHours since midnight. Values: 0-23.
ESS_USHORT_TDayDay of the month. Values: 1-31.
ESS_USHORT_TMonthMonths since January. Values: 0-11. January = 0.
ESS_USHORT_TYearYears since 1900.
ESS_USHORT_TWeekdayDays since Sunday. Values: 0-6. Sunday = 0.