[Asterisk-cvs] asterisk/include/asterisk app.h,1.32,1.33
markster at lists.digium.com
markster at lists.digium.com
Sat Mar 5 15:09:34 CST 2005
Update of /usr/cvsroot/asterisk/include/asterisk
In directory mongoose.digium.com:/tmp/cvs-serv28325/include/asterisk
Modified Files:
app.h
Log Message:
Flush out app stuff, make profiling easier to turn on/off
Index: app.h
===================================================================
RCS file: /usr/cvsroot/asterisk/include/asterisk/app.h,v
retrieving revision 1.32
retrieving revision 1.33
diff -u -d -r1.32 -r1.33
--- app.h 27 Feb 2005 19:07:46 -0000 1.32
+++ app.h 5 Mar 2005 21:06:26 -0000 1.33
@@ -38,6 +38,7 @@
AST_ACTION_TRANSFER, /* adata is a string with exten[@context] */
AST_ACTION_WAITOPTION, /* adata is a timeout, or 0 for defaults */
AST_ACTION_NOOP, /* adata is unused */
+ AST_ACTION_BACKLIST, /* adata is list of files separated by ; allows interruption */
} ast_ivr_action;
struct ast_ivr_option {
@@ -62,6 +63,8 @@
struct ast_ivr_option *options; /* All options */
};
+#define AST_IVR_FLAG_AUTORESTART (1 << 0)
+
#define AST_IVR_DECLARE_MENU(holder,title,flags,foo...) \
static struct ast_ivr_option __options_##holder[] = foo;\
static struct ast_ivr_menu holder = { title, flags, __options_##holder }
More information about the svn-commits
mailing list