summaryrefslogtreecommitdiff
path: root/main/pbx_private.h
diff options
context:
space:
mode:
Diffstat (limited to 'main/pbx_private.h')
-rw-r--r--main/pbx_private.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/main/pbx_private.h b/main/pbx_private.h
index e09194188..22d454ad0 100644
--- a/main/pbx_private.h
+++ b/main/pbx_private.h
@@ -31,6 +31,17 @@ void set_ext_pri(struct ast_channel *c, const char *exten, int pri);
/*! pbx.c function needed by pbx_app.c */
void unreference_cached_app(struct ast_app *app);
+/*! pbx_includes.c */
+struct ast_include;
+AST_VECTOR(ast_includes, struct ast_include *);
+
+/*! Allocate and initialize an ast_include. */
+struct ast_include *include_alloc(const char *value, const char *registrar);
+/*! Free an ast_include and associated data. */
+void include_free(struct ast_include *inc);
+int include_valid(const struct ast_include *inc);
+const char *include_rname(const struct ast_include *inc);
+
/*! pbx_builtins.c functions needed by pbx.c */
int indicate_congestion(struct ast_channel *, const char *);
int indicate_busy(struct ast_channel *, const char *);