Approximate Regex Match Callback Parameters.
Declaration:
|
Copy Code |
typedef struct tagAT_REC_APPROX_REGEX_MATCH_CB_PARAMS
{
HIG_REC_APPROX_REGEX higRecApproxRegex;
AT_BOOL is_accepted;
AT_REC_MATCH_RESULT match_result;
} AT_REC_APPROX_REGEX_MATCH_CB_PARAMS, * LPAT_REC_APPROX_REGEX_MATCH_CB_PARAMS;
|
Structure Members:
Name |
Type |
Description |
higRecApproxRegex |
HIG_REC_APPROX_REGEX |
The approximate regex conducting the search. Default value is 0. |
is_accepted |
AT_BOOL |
A toggle that controls whether the match is accepted. Acceptable values include { TRUE , FALSE }. Default value is TRUE. To reject the match, callers will set this property value to FALSE. |
match_result |
AT_REC_MATCH_RESULT |
Information about a single match. |