summaryrefslogtreecommitdiff
path: root/include/asterisk.h
diff options
context:
space:
mode:
authorJason Parker <jparker@digium.com>2013-05-07 17:53:50 +0000
committerJason Parker <jparker@digium.com>2013-05-07 17:53:50 +0000
commit570d0c3139bf6caaa229b80b4b72980665d04acd (patch)
treea92d5dd1a657380da5ba1928bc01c4b15f5f229e /include/asterisk.h
parent1beb86ddf5fa2f9189a0002e7dbe49fee98df719 (diff)
Fix build breakage, from LOW_MEMORY fix.
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@387802 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'include/asterisk.h')
-rw-r--r--include/asterisk.h42
1 files changed, 21 insertions, 21 deletions
diff --git a/include/asterisk.h b/include/asterisk.h
index a936594e5..58d2df89c 100644
--- a/include/asterisk.h
+++ b/include/asterisk.h
@@ -127,27 +127,6 @@ const char *ast_file_version_find(const char *file);
char *ast_complete_source_filename(const char *partial, int n);
/*!
- * \since 12
- * \brief A \ref stasis topic which publishes messages regarding system changes
- *
- * \retval \ref stasis_topic for system level changes
- * \retval NULL on error
- */
-struct stasis_topic *ast_system_topic(void);
-
-/*!
- * \since 12
- * \brief A \ref stasis_message_type for network changes
- *
- * \retval NULL on error
- * \retval \ref stasis_message_type for network changes
- *
- * \note Messages of this type should always be issued on and expected from
- * the \ref ast_system_topic \ref stasis topic
- */
-struct stasis_message_type *ast_network_change_type(void);
-
-/*!
* \brief Register/unregister a source code file with the core.
* \param file the source file name
* \param version the version string (typically a SVN revision keyword string)
@@ -221,6 +200,27 @@ int64_t ast_mark(int, int start1_stop0);
#define ast_mark(a, b) do { } while (0)
#endif /* LOW_MEMORY */
+/*!
+ * \since 12
+ * \brief A \ref stasis topic which publishes messages regarding system changes
+ *
+ * \retval \ref stasis_topic for system level changes
+ * \retval NULL on error
+ */
+struct stasis_topic *ast_system_topic(void);
+
+/*!
+ * \since 12
+ * \brief A \ref stasis_message_type for network changes
+ *
+ * \retval NULL on error
+ * \retval \ref stasis_message_type for network changes
+ *
+ * \note Messages of this type should always be issued on and expected from
+ * the \ref ast_system_topic \ref stasis topic
+ */
+struct stasis_message_type *ast_network_change_type(void);
+
/*! \brief
* Definition of various structures that many asterisk files need,
* but only because they need to know that the type exists.