parseLongDateTime method

dynamic parseLongDateTime()

Implementation

parseLongDateTime() {
  var v = getULong(this.data, this.offset + this.relativeOffset + 4);
  // Subtract seconds between 01/01/1904 and 01/01/1970
  // to convert Apple Mac timestamp to Standard Unix timestamp
  v -= 2082844800;
  this.relativeOffset += 8;
  return v;
}