Creates a new redactor instance.
Copy Code
|
|
---|---|
AT_ERRCOUNT ACCUAPI IG_REC_redactor_create(
const LPHIG_REC_REDACTOR lphigRecRedactor
);
|
Name | Type | Description |
---|---|---|
lphigRecRedactor | const LPHIG_REC_REDACTOR | The far pointer indicating where to return the handle of the redactor instance. |
This function does not process image pixels.
Callers are required to call IG_REC_redactor_delete to release resources owned by lphigRecRedactor.
Copy Code
|
|
---|---|
AT_ERRCOUNT errCount = 0 ; HIG_REC_REDACTOR higRecRedactor = 0 ; errCount = IG_REC_redactor_create( &higRecRedactor ) ; IG_REC_redactor_delete( higRecRedactor ) ; |
Callers are required to call IG_REC_redactor_delete to release resources owned by lphigRecRedactor.