Jump to content

FIELDINFOINSERT

From EDM2
Revision as of 00:50, 21 April 2025 by Martini (talk | contribs) (Created page with "Structure that contains information about the FIELDINFO structure or structures that are being inserted into a container. This structure is used in the CM_INSERTDETAILFIELDINFO container message only. == Type == struct == C Declaration Method == typedef == Example Code == <pre> typedef struct _FIELDINFOINSERT { ULONG cb; Structure size.: PFIELDINFO pFieldInfoOrder; Column order.: ULONG fInvalidateFieldIn...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Structure that contains information about the FIELDINFO structure or structures that are being inserted into a container. This structure is used in the CM_INSERTDETAILFIELDINFO container message only.

Type

struct

C Declaration Method

typedef

Example Code

typedef struct _FIELDINFOINSERT {
  ULONG          cb;                    /*  Structure size. */
  PFIELDINFO     pFieldInfoOrder;       /*  Column order. */
  ULONG          fInvalidateFieldInfo;  /*  Update flag. */
  ULONG          cFieldInfoInsert;      /*  Number of columns. */
} FIELDINFOINSERT;

typedef   FIELDINFOINSERT   * PFIELDINFOINSERT ;