SEARCH INFO: Difference between revisions
Appearance
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..." |
(No difference)
|
Latest revision as of 03:08, 3 May 2025
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 ;