aboutsummaryrefslogtreecommitdiffstats
path: root/include/asterisk/pbx.h
diff options
context:
space:
mode:
authormarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2004-11-22 22:11:10 +0000
committermarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2004-11-22 22:11:10 +0000
commit0858b615953e6a492a1f5fafe4b97b93a48aeed2 (patch)
treedfd168516c18f196d90ca6b18db8c2b6ab1a8f84 /include/asterisk/pbx.h
parentc39e49d86c0255adf048cbcede0f817ec2b89372 (diff)
Add improved macro functionality (bug #2905)
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@4317 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'include/asterisk/pbx.h')
-rwxr-xr-xinclude/asterisk/pbx.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/include/asterisk/pbx.h b/include/asterisk/pbx.h
index 327a4eea9..4343dc35c 100755
--- a/include/asterisk/pbx.h
+++ b/include/asterisk/pbx.h
@@ -578,7 +578,9 @@ int ast_extension_patmatch(const char *pattern, const char *data);
set to 1, sets to auto fall through. If newval set to 0, sets to no auto
fall through (reads extension instead). Returns previous value. */
extern int pbx_set_autofallthrough(int newval);
-
+int ast_goto_if_exists(struct ast_channel *chan, char* context, char *exten, int priority);
+/* I can find neither parsable nor parseable at dictionary.com, but google gives me 169000 hits for parseable and only 49,800 for parsable */
+int ast_parseable_goto(struct ast_channel *chan, const char *goto_string);
#if defined(__cplusplus) || defined(c_plusplus)
}
#endif