summaryrefslogtreecommitdiff
path: root/pcre_dfa_exec.c
diff options
context:
space:
mode:
authorzherczeg <zherczeg@2f5784b3-3f2a-0410-8824-cb99058d5e15>2012-01-04 17:29:11 +0000
committerzherczeg <zherczeg@2f5784b3-3f2a-0410-8824-cb99058d5e15>2012-01-04 17:29:11 +0000
commit9e2521280c0e8bb61c08b7afd68cc7c215e8aaa4 (patch)
tree07ed1ab755368b7e75f7ba5c1e1bee5b00d35760 /pcre_dfa_exec.c
parent7168a105bea22be196dc072400e99e3bfb642c5d (diff)
downloadpcre-9e2521280c0e8bb61c08b7afd68cc7c215e8aaa4.tar.gz
add pcre16_callout_block and pcre16_extra
git-svn-id: svn://vcs.exim.org/pcre/code/trunk@850 2f5784b3-3f2a-0410-8824-cb99058d5e15
Diffstat (limited to 'pcre_dfa_exec.c')
-rw-r--r--pcre_dfa_exec.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/pcre_dfa_exec.c b/pcre_dfa_exec.c
index 3fe477b..ba9b416 100644
--- a/pcre_dfa_exec.c
+++ b/pcre_dfa_exec.c
@@ -2553,7 +2553,7 @@ for (;;)
rrc = 0;
if (PUBL(callout) != NULL)
{
- pcre_callout_block cb;
+ PUBL(callout_block) cb;
cb.version = 1; /* Version 1 of the callout block */
cb.callout_number = code[LINK_SIZE+2];
cb.offset_vector = offsets;
@@ -2892,7 +2892,7 @@ for (;;)
rrc = 0;
if (PUBL(callout) != NULL)
{
- pcre_callout_block cb;
+ PUBL(callout_block) cb;
cb.version = 1; /* Version 1 of the callout block */
cb.callout_number = code[1];
cb.offset_vector = offsets;
@@ -3013,7 +3013,7 @@ pcre_dfa_exec(const pcre *argument_re, const pcre_extra *extra_data,
int offsetcount, int *workspace, int wscount)
#else
PCRE_EXP_DEFN int PCRE_CALL_CONVENTION
-pcre16_dfa_exec(const pcre *argument_re, const pcre_extra *extra_data,
+pcre16_dfa_exec(const pcre *argument_re, const pcre16_extra *extra_data,
PCRE_SPTR16 subject, int length, int start_offset, int options, int *offsets,
int offsetcount, int *workspace, int wscount)
#endif