Packs the date and time information into a DOS packed date and time value.
#include <smsutapi.h>
UINT32 NWSMPackDateTime (
UINT16 year,
UINT16 month,
UINT16 day,
UINT16 hours,
UINT16 minutes,
UINT16 seconds);
(IN) Specifies the year value to pack (minimum value is 1980).
(IN) Specifies the month value to pack (1-12).
(IN) Specifies the day value to pack (1-31).
(IN) Specifies the hour value to pack (0-23).
(IN) Specifies the minute value to pack (0-59).
(IN) Specifies the seconds value to pack (0-59).
If NWSMPackDateTime is successful, it returns a DOS packed date and time.
NWSMPackDateTime assumes that the input values are correct.
Do not divide seconds by two.