aboutsummaryrefslogtreecommitdiffstats
path: root/include/asterisk/app.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/asterisk/app.h')
-rwxr-xr-xinclude/asterisk/app.h27
1 files changed, 27 insertions, 0 deletions
diff --git a/include/asterisk/app.h b/include/asterisk/app.h
new file mode 100755
index 000000000..ecb1ab101
--- /dev/null
+++ b/include/asterisk/app.h
@@ -0,0 +1,27 @@
+/*
+ * Asterisk -- A telephony toolkit for Linux.
+ *
+ * Application convenience functions, designed to give consistent
+ * look and feel to asterisk apps.
+ *
+ * Copyright (C) 1999, Mark Spencer
+ *
+ * Mark Spencer <markster@linux-support.net>
+ *
+ * This program is free software, distributed under the terms of
+ * the GNU General Public License
+ */
+
+#ifndef _ASTERISK_APP_H
+#define _ASTERISK_APP_H
+
+#if defined(__cplusplus) || defined(c_plusplus)
+extern "C" {
+#endif
+extern int ast_app_getdata(struct ast_channel *c, char *prompt, char *s, int maxlen, int timeout);
+
+#if defined(__cplusplus) || defined(c_plusplus)
+}
+#endif
+
+#endif