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 Type | Field | Description |
---|---|---|
ESS_TIME_T | TimeValue | Time value in seconds after 1/1/70 |
ESS_USHORT_T | Seconds | Seconds after the minute. Values: 0-59. |
ESS_USHORT_T | Minutes | Minutes after the hour. Values: 0-59. |
ESS_USHORT_T | Hours | Hours since midnight. Values: 0-23. |
ESS_USHORT_T | Day | Day of the month. Values: 1-31. |
ESS_USHORT_T | Month | Months since January. Values: 0-11. January = 0. |
ESS_USHORT_T | Year | Years since 1900. |
ESS_USHORT_T | Weekday | Days since Sunday. Values: 0-6. Sunday = 0. |