Redactor Progress Callback Parameters.
Copy Code
|
|
---|---|
typedef struct tagAT_REC_REDACTOR_PROGRESS_CB_PARAMS
{
AT_BOOL keep_going;
AT_INT percent;
} AT_REC_REDACTOR_PROGRESS_CB_PARAMS, * LPAT_REC_REDACTOR_PROGRESS_CB_PARAMS;
|
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. |