Carbon


LongDateCvt

Header: DateTimeUtils.h

union LongDateCvt {
    SInt64 c; 
    union {
          UInt32 lHigh; 
      UInt32 lLow;
    } hl;
};

Field descriptions

c

The date and time, specified in seconds relative to midnight, January 1, 1904, as a signed, 64-bit integer in SANE comp format. The high-order bit of this field represents the sign of the 64-bit integer. Negative values allow you to indicate dates and times prior to midnight, January 1, 1904.

hl

The high-order 32 bits when converting from a standard date-time value. Set this field to 0.

The Date, Time, and Measurement Utilities provide the LongDateCvt structure to help in setting up LongDateTime values.


© 2000 Apple Computer, Inc. (Last Updated 6/30/2000)