Jump to content

SEARCHSTRING

From EDM2
Revision as of 01:20, 21 April 2025 by Martini (talk | contribs) (Created page with "Structure that contains information about the container text string that is the object of the search. This structure is used in the CM_SEARCHSTRING container message only. == Type == struct == C Declaration Method == typedef == Example Code == <pre> typedef struct _SEARCHSTRING { ULONG cb; Structure size.: PSZ pszSearch; Pointer to the search string.: ULONG fsPrefix; Search flag.: ULONG fsCas...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Structure that contains information about the container text string that is the object of the search. This structure is used in the CM_SEARCHSTRING container message only.

Type

struct

C Declaration Method

typedef

Example Code

typedef struct _SEARCHSTRING {
  ULONG     cb;               /*  Structure size. */
  PSZ       pszSearch;        /*  Pointer to the search string. */
  ULONG     fsPrefix;         /*  Search flag. */
  ULONG     fsCaseSensitive;  /*  Case sensitivity flag. */
  ULONG     usView;           /*  View to search. */
} SEARCHSTRING;

typedef   SEARCHSTRING   * PSEARCHSTRING ;