Contains a time stamp associated with an event.
typedef struct EVT_TimeStamp {
unsigned int seconds;
unsigned short replicaNumber;
unsigned short event;
};
Specifies in seconds when the event occurred. Zero equals 12:00 midnight, January 1, 1970, UTC.
Specifies the number of the replica on which the change or event occurred.
Specifies an integer that further orders events occurring within the same whole-second interval.
Two time stamp values are compared by comparing the seconds fields first and the event fields second. If the seconds fields are unequal, order is determined by the seconds field alone. If the seconds fields are equal, and the eventID fields are unequal, order is determined by the eventID fields. If the seconds and the event fields are equal, the time stamps are equal.