Jump to content

FIELDINFOINSERT: Difference between revisions

From EDM2
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..."
 
(No difference)

Latest revision as of 00:50, 21 April 2025

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 ;