Jump to content

QUERYRECORDRECT

From EDM2
Revision as of 01:18, 21 April 2025 by Martini (talk | contribs) (Created page with "Structure that contains information about the rectangle of the specified container record, relative to the container window origin. This structure is used in the CM_QUERYRECORDRECT container message only. == Type == struct == C Declaration Method == typedef == Example Code == <pre> typedef struct _QUERYRECORDRECT { ULONG cb; Structure size.: PRECORDCORE pRecord; Pointer.: ULONG fRightSplitWindow; /*...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Structure that contains information about the rectangle of the specified container record, relative to the container window origin. This structure is used in the CM_QUERYRECORDRECT container message only.

Type

struct

C Declaration Method

typedef

Example Code

typedef struct _QUERYRECORDRECT {
  ULONG           cb;                 /*  Structure size. */
  PRECORDCORE     pRecord;            /*  Pointer. */
  ULONG           fRightSplitWindow;  /*  Window flag. */
  ULONG           fsExtent;           /*  Rectangle flags. */
} QUERYRECORDRECT;

typedef   QUERYRECORDRECT   * PQUERYRECORDRECT ;