summaryrefslogtreecommitdiff
path: root/apps/app_senddtmf.c
diff options
context:
space:
mode:
authorLuigi Rizzo <rizzo@icir.org>2007-11-22 03:50:04 +0000
committerLuigi Rizzo <rizzo@icir.org>2007-11-22 03:50:04 +0000
commit51391e6b091be6017000f16b4b5a9b0230565746 (patch)
treeddeac0b6008d46b43319952a82f92548c81bac14 /apps/app_senddtmf.c
parent200f9c633bc1202cd7296274269a40ae2d66b7f4 (diff)
shuffle a little bit the content of header files to reduce dependencies.
In this commit: - move the ast_register/unregister_app functions to module.h to avoid the need to include pbx.h for the simpler apps; - move the ast_group structure to channel.h to remove the dependency of app.h on linkedlists.h Note, this is a long process that I am doing in small steps. The main difficulty is that now for each subsystem we have a single header (e.g. channel.h) included by the subsystem provider (usually one file, e.g. channel.c) and by its clients (dozens of them, e.g. we have some 70+ apps and 30+ functions). This requires the clients to include all the extra headers required by the provider (eg. lock.h, linkedlists.h, definitions of substructures...) even though many of the clients would be just happy with opaque struct declarations and function prototypes. The long term plan is to eventually rectify this structure so that the compilation can become faster, and also APIs are more stable. git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@89522 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'apps/app_senddtmf.c')
-rw-r--r--apps/app_senddtmf.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/app_senddtmf.c b/apps/app_senddtmf.c
index 3e3973620..67bd4feaa 100644
--- a/apps/app_senddtmf.c
+++ b/apps/app_senddtmf.c
@@ -33,6 +33,7 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
#include "asterisk/module.h"
#include "asterisk/app.h"
#include "asterisk/manager.h"
+#include "asterisk/channel.h"
static char *app = "SendDTMF";