From e8a5f98fe802e750139dc614db4314f6363c088c Mon Sep 17 00:00:00 2001 From: rizzo Date: Thu, 22 Nov 2007 03:50:04 +0000 Subject: 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: http://svn.digium.com/svn/asterisk/trunk@89522 f38db490-d61c-443f-a65b-d21fe96a405b --- apps/app_stack.c | 1 + 1 file changed, 1 insertion(+) (limited to 'apps/app_stack.c') diff --git a/apps/app_stack.c b/apps/app_stack.c index 8d3d7bcc9..341b4c1d9 100644 --- a/apps/app_stack.c +++ b/apps/app_stack.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 const char *app_gosub = "Gosub"; static const char *app_gosubif = "GosubIf"; -- cgit v1.2.3