Page 1 of 1

Question re ETYPE_TIMESTAMP

PostPosted: Jun 16, 2010 @ 2:23pm
by laughingkiwi
Quick question - is the ETYPE_TIMESTAMP type semantically equal to the time_t in standard C++? time_t is the number of seconds since 1/1/1970. Is the ETYPE_TIMESTAMP the same value, or is it a bit-packed field similar to Windows FILETIME?

Cheers

Re: Question re ETYPE_TIMESTAMP

PostPosted: Jun 16, 2010 @ 3:51pm
by edge
Hi laughingkiwi,

As described in the docs (http://www.edgelib.com/index.php?node=28), the value represents the amount of seconds passed since January 1st, 1970 (Unix epoch time).

Wouter