Windows apps
Collapse the table of content
Expand the table of content
Information
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.

WofEnumFilesProc callback function

Callback function that gets called for each file backed by an external data source, such as a WIM file.

Syntax


Typedef BOOL CALLBACK *WofEnumFilesProc(
  _In_     PCWSTR FilePath,
  _In_     PVOID  ExternalFileInfo,
  _In_opt_ PVOID  UserData
);

Parameters

FilePath [in]

Specifies the path to the file which is backed by an external data source.

ExternalFileInfo [in]

Points to a buffer containing information about the data source backing the file. The type of this buffer depends on the provider; data structures for each provider are:

WOF_PROVIDER_WIMWIM_EXTERNAL_FILE_INFO
WOF_PROVIDER_FILEWOF_FILE_COMPRESSION_INFO

 

UserData [in, optional]

Optional user defined data.

Return value

A boolean value that indicates whether the enumeration was successful. The enumeration will stop if this callback function returns FALSE.

 

 

Show:
© 2017 Microsoft