ImageGear for C and C++ on Windows v19.3 - Updated
IG_REC_approx_regex_delete
API Reference Guide > Recognition Component API Reference > Recognition Component Functions Reference > Approx Regex Functions > IG_REC_approx_regex_delete

Releases an approximate regex instance.

Declaration:

 
Copy Code
AT_ERRCOUNT ACCUAPI IG_REC_approx_regex_delete(
   const HIG_REC_APPROX_REGEX higRecApproxRegex
);

Arguments:

Name Type Description
higRecApproxRegex const HIG_REC_APPROX_REGEX The handle to an approximate regex instance.

Return Value:

The number of ImageGear errors that occurred during this function call. If there are no errors, the return value is IGE_SUCCESS.

Supported Raster Image Formats:

This function does not process image pixels.

Example:

 
Copy Code
AT_ERRCOUNT errCount = 0 ;
HIG_REC_APPROX_REGEX higRecApproxRegex = 0 ;

IG_REC_approx_regex_create( &higRecApproxRegex ) ;
errCount = IG_REC_approx_regex_delete( higRecApproxRegex ) ;

Remarks:

All objects and memory owned will be deleted at this time. Reusing the higRecApproxRegex after this function returns success will result in an error.

See Also

HIG_REC_APPROX_REGEX