Jump to content

SEARCH INFO

From EDM2
Revision as of 03:08, 3 May 2025 by Martini (talk | contribs) (Created page with "Search information structure. == Type == struct == C Declaration Method== typedef struct == Example Code== <PRE> typedef struct _SEARCH_INFO { M_WPObject *ClassToBeFound; Pointer to the object to be found.: BOOL fSkipExtendedSearchCriteria; Flag to skip extended search criteria.: PVOID pvoidExtendedCriteria; Pointer to extended criteria.: } SEARCH_INFO; typedef SEARCH _ INFO * PSRCH _ INFO...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Search information structure.

Type

struct

C Declaration Method

typedef struct

Example Code

typedef struct _SEARCH_INFO {
  M_WPObject      *ClassToBeFound;               /*  Pointer to the object to be found. */
  BOOL             fSkipExtendedSearchCriteria;  /*  Flag to skip extended search criteria. */
  PVOID            pvoidExtendedCriteria;        /*  Pointer to extended criteria. */
} SEARCH_INFO;

typedef   SEARCH _ INFO   * PSRCH _ INFO ;