Jump to content

CTIME

From EDM2
Revision as of 01:15, 21 April 2025 by Martini (talk | contribs) (Created page with "Structure that contains time information for a data element in the details view of a container control. == Type == struct == C Declaration Method == typedef == Example Code == <pre> typedef struct _CTIME { UCHAR hours; Current hour.: UCHAR minutes; Current minute.: UCHAR seconds; Current second.: UCHAR ucReserved; Reserved.: } CTIME; typedef CTIME * PCTIME ; </pre> Category:Data type")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Structure that contains time information for a data element in the details view of a container control.

Type

struct

C Declaration Method

typedef

Example Code

typedef struct _CTIME {
  UCHAR     hours;       /*  Current hour. */
  UCHAR     minutes;     /*  Current minute. */
  UCHAR     seconds;     /*  Current second. */
  UCHAR     ucReserved;  /*  Reserved. */
} CTIME;

typedef   CTIME   * PCTIME ;