NW_TIME
Contains the time in packed format
typedef struct {
nuint8 seconds ;
nuint8 minutes ;
nuint16 hours ;
} NW_TIME;
NW_TIME = packed Record
seconds : nuint8;
minutes : nuint8;
hours : nuint16
End;
Because the hours field is defined as a nuint16, NW_TIME takes up a nuint32 of space.