Jump to content

EDITCTLINIT

From EDM2
Revision as of 02:54, 3 May 2025 by Martini (talk | contribs) (Created page with "This structure is passed to a details criteria edit window when it is created, so that it knows the current value and min/max values for the criteria to be edited. As you modify the compare value using the criteria edit window, you should update the buffer pointed to by pCompareValue. == Type == struct == C Declaration Method == typedef struct == Example Code == <PRE> typedef struct _EDITCTLINIT { ULONG cb; Length of this structure.: PVOID...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

This structure is passed to a details criteria edit window when it is created, so that it knows the current value and min/max values for the criteria to be edited. As you modify the compare value using the criteria edit window, you should update the buffer pointed to by pCompareValue.

Type

struct

C Declaration Method

typedef struct

Example Code

typedef struct _EDITCTLINIT {
  ULONG     cb;                 /* Length of this structure. */
  PVOID     pCompareValue;      /* Buffer containing the current value. */
  ULONG     ulLenCompareValue;  /* Length of the pCompareValue buffer. */
  PVOID     pMinCompareValue;   /* Set to NULL. */
  PVOID     pMaxCompareValue;   /* Set to NULL. */
} EDITCTLINIT;

typedef EDITCTLINIT *PEDITCTLINIT;