NW_TIME

Contains the time in packed format

Service:Time/Date Manipulation
Defined In:nwmisc.h, nwmisc.inc, and nwncpext.txt

Structure

  typedef struct { 
     nuint8    seconds ; 
     nuint8    minutes ; 
     nuint16   hours ; 
  } NW_TIME;
  

Pascal Structure

  NW_TIME = packed Record 
      seconds : nuint8; 
      minutes : nuint8; 
      hours : nuint16 
    End;
  

Fields

seconds
Specifies the seconds.
minutes
Specifies the minutes.
hours
Specifies the hours.

Remarks

Because the hours field is defined as a nuint16, NW_TIME takes up a nuint32 of space.