Jump to content

QUERYRECFROMRECT: Difference between revisions

From EDM2
Created page with "Structure that contains information about a container record that is bounded by a specified rectangle. This structure is used in the CM_QUERYRECORDFROMRECT container message only. == Type == struct == C Declaration Method == typedef == Example Code == <pre> typedef struct _QUERYRECFROMRECT { ULONG cb; Structure size.: RECTL rect; Rectangle.: ULONG fsSearch; Search control flags.: } QUERYRECFROMRECT; typedef QUERYRECF..."
 
(No difference)

Latest revision as of 01:17, 21 April 2025

Structure that contains information about a container record that is bounded by a specified rectangle. This structure is used in the CM_QUERYRECORDFROMRECT container message only.

Type

struct

C Declaration Method

typedef

Example Code

typedef struct _QUERYRECFROMRECT {
  ULONG     cb;        /*  Structure size. */
  RECTL     rect;      /*  Rectangle. */
  ULONG     fsSearch;  /*  Search control flags. */
} QUERYRECFROMRECT;

typedef   QUERYRECFROMRECT   * PQUERYRECFROMRECT ;