Approximate Regex Progress Callback Parameters.
Declaration:
|
Copy Code |
typedef struct tagAT_REC_APPROX_REGEX_PROGRESS_CB_PARAMS
{
AT_BOOL keep_going;
AT_INT percent;
} AT_REC_APPROX_REGEX_PROGRESS_CB_PARAMS, * LPAT_REC_APPROX_REGEX_PROGRESS_CB_PARAMS;
|
Structure Members:
Name |
Type |
Description |
keep_going |
AT_BOOL |
A toggle that controls whether the current operation is aborted. Acceptable values include { TRUE , FALSE }. Default value is TRUE. |
percent |
AT_INT |
The progress of the current operation as a percentage. Acceptable values are in the range [ 0 , 100 ]. Default value is 0. |