Assigns the redactor progress callback.
Copy Code
|
|
---|---|
AT_ERRCOUNT ACCUAPI IG_REC_redactor_progress_cb_set( const HIG_REC_REDACTOR higRecRedactor, LPFNIG_REC_REDACTOR_PROGRESS_CB const lpfnCallback, LPVOID const lpUserData ); |
Name | Type | Description |
---|---|---|
higRecRedactor | const HIG_REC_REDACTOR | The handle to a redactor instance. |
lpfnCallback | LPFNIG_REC_REDACTOR_PROGRESS_CB | The progress callback function to invoke during redaction. |
lpUserData | LPVOID | Anonymous data passed to the progress callback function. |
This function does not process image pixels.
Copy Code
|
|
---|---|
AT_ERRCOUNT errCount = 0 ; HIG_REC_REDACTOR higRecRedactor = 0 ; AT_INT user_data = 0 ; IG_REC_redactor_create( &higRecRedactor ) ; errCount = IG_REC_redactor_progress_cb_set ( higRecRedactor, &on_redactor_progress, &user_data ) ; IG_REC_redactor_delete( higRecRedactor ) ; |
Use this function to install a callback to receive progress notifications prior to completion. The callback presents an opportunity to interrupt the operation.