Jump to content

MINIRECORDCORE

From EDM2
Revision as of 04:10, 19 April 2025 by Martini (talk | contribs) (Created page with "Structure that contains information for records smaller than those defined by the RECORDCORE data structure. This data structure is used if the CCS_MINIRECORDCORE style bit is specified when a container is created. == Type == struct == C Declaration Method == typedef == Example Code == <pre> typedef struct _MINIRECORDCORE { ULONG cb; Structure size.: ULONG flRecordAttr; /* Attributes of contai...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Structure that contains information for records smaller than those defined by the RECORDCORE data structure. This data structure is used if the CCS_MINIRECORDCORE style bit is specified when a container is created.

Type

struct

C Declaration Method

typedef

Example Code

typedef struct _MINIRECORDCORE {
  ULONG                        cb;               /*  Structure size. */
  ULONG                        flRecordAttr;     /*  Attributes of container records. */
  POINTL                       ptlIcon;          /*  Record position. */
  struct _MINIRECORDCORE      *preccNextRecord;  /*  Pointer to the next linked record. */
  PSZ                          pszIcon;          /*  Record text. */
  HPOINTER                     hptrIcon;         /*  Record icon. */
} MINIRECORDCORE;

typedef MINIRECORDCORE *PMINIRECORDCORE;