Legacy Documentclose button

Important: The information in this document is obsolete and should not be used for new development.

Previous Book Contents Book Index Next

Inside Macintosh: Operating System Utilities /
Chapter 4 - Date, Time, and Measurement Utilities / Date, Time, and Measurement Utilities Reference
Data Structures


The Unsigned Wide Record

The Microseconds procedure uses the unsigned wide record to return the number of microseconds elapsed since system startup time. The UnsignedWide data type defines the format for the unsigned wide record.

UnsignedWide =    {Microseconds procedure return type}
   PACKED RECORD
      hi:      LongInt;          {high-order 32 bits}
      lo:      LongInt;          {low-order 32 bits}
   END;
Field Description
hi
The high-order 32 bits
lo
The low-order 32 bits

Previous Book Contents Book Index Next

© Apple Computer, Inc.
6 JUL 1996