GMTStampType

Declaration

Delphi

GMTStampType = record
    years: byte;
    months: byte;
    days: byte;
    hours: byte;
    minutes: byte;
    seconds: byte;
end;

C/C++

typedef struct
{
    unsigned char years;
    unsigned char months;
    unsigned char days;
    unsigned char hours;
    unsigned char minutes;
    unsigned char seconds;
} SOPAD_GMTStampType;

Description

This type is used to store the time stamp (GMT) of the signature and returned by StopRead indicating the time of the signature. (For those pads that have a built-in real time clock).

Members

yearsmonthsdays

Date part of the time stamp.

hoursminutesseconds

Time part of the time stamp.