Searched defs:DateTime (Results 1 – 2 of 2) sorted by relevance
65 typedef struct DateTime DateTime; typedef66 struct DateTime { struct67 double rJD; /* The julian day number */68 int Y, M, D; /* Year, month, and day */69 int h, m; /* Hour and minutes */70 int tz; /* Timezone offset in minutes */71 double s; /* Seconds */72 char validYMD; /* True if Y,M,D are valid */73 char validHMS; /* True if h,m,s are valid */74 char validJD; /* True if rJD is valid */[all …]
55 static dp_set_date_time_t DateTime; in ADM_Process_date() local