aboutsummaryrefslogtreecommitdiffstats
path: root/include/asterisk.h
diff options
context:
space:
mode:
authorkpfleming <kpfleming@f38db490-d61c-443f-a65b-d21fe96a405b>2007-11-21 16:07:11 +0000
committerkpfleming <kpfleming@f38db490-d61c-443f-a65b-d21fe96a405b>2007-11-21 16:07:11 +0000
commit6d30ebbac73fc84a14ac145fab5a0b24ca0b15ef (patch)
treee5c9e2a613cdf11370ad37524fed947af098b5ae /include/asterisk.h
parent606225a56840955ef3ab88164c53701ce6b94b9e (diff)
move these forward declarations back to asterisk.h where they belong... even though asterisk.h includes compat.h, these declarations have nothing to do with the being platform-compatible and are directly related to being part of Asterisk
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@89482 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'include/asterisk.h')
-rw-r--r--include/asterisk.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/include/asterisk.h b/include/asterisk.h
index cb8499c3c..2aa978511 100644
--- a/include/asterisk.h
+++ b/include/asterisk.h
@@ -162,4 +162,14 @@ int64_t ast_mark(int, int start1_stop0);
#define ast_mark(a, b) do { } while (0)
#endif /* LOW_MEMORY */
+/*! \brief
+ * Definition of various structures that many asterisk files need,
+ * but only because they need to know that the type exists.
+ *
+ */
+
+struct ast_channel;
+struct ast_frame;
+struct ast_module;
+
#endif /* _ASTERISK_H */