The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.
WofEnumEntryProc callback function
Callback function that gets called for each data source in response to a call to WofEnumEntries.
Syntax
BOOL CALLBACK *WofEnumEntryProc(
_In_ const PVOID EntryInfo,
_In_opt_ PVOID UserData
);
Parameters
- EntryInfo [in]
-
The structure that contains specific provider info. The Type of EntryInfo is provider-specific. For WOF_PROVIDER_WIM, it will be PWIM_ENTRY_INFO.
- UserData [in, optional]
-
Optional user defined data specified in the call to WofEnumEntries.
Return value
A boolean value that indicates whether the enumeration was successful. The enumeration will stop if this callback function returns FALSE.
Show: