Structure with information on the status of the index upate
Remarks
During indexing, OnProgressUpdate will be called frequently with information about the progress of the indexing job. You can use this information to show the user a progress bar or other status indicator during indexing. To access this information, create a class based on DIndexJob that overrides OnProgressUpdate. Example:
class CMyIndexJob : publicDIndexJob {
public:
virtualvoid OnProgressUpdate(dtsIndexProgressInfo& info) {
// ... show the user the update info in a dialog box
}
};