Hi.
I need to convert Java long datatype (64-bit) data into legacy c++ app unsigned int (32-bit) datatype.
No worries about the data loss as the data is Linux timestamp, which would take aeons to hit unsigned int limit.
Any idea what transformation to apply to these numbers?
Thanks in advance!
P.S. - data-types example:
Java - 1266336527340
C++ - 1266336583
They both produce same date, and about same time (+/- a minute).