]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
dox
authorAnthony Minessale <anthony.minessale@gmail.com>
Wed, 12 Apr 2006 16:34:34 +0000 (16:34 +0000)
committerAnthony Minessale <anthony.minessale@gmail.com>
Wed, 12 Apr 2006 16:34:34 +0000 (16:34 +0000)
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1126 d0543943-73ff-0310-b7d9-9358b9ac24b2

src/include/switch_buffer.h
src/include/switch_caller.h
src/include/switch_channel.h
src/include/switch_config.h
src/include/switch_event.h
src/include/switch_ivr.h
src/include/switch_loadable_module.h
src/include/switch_resample.h
src/include/switch_sqlite.h
src/include/switch_stun.h

index 64fbf745437f60336084891be949b3a93a9e9ff8..ff05db1a6cdc0c9ffd03dd14e1584e5b90f29911 100644 (file)
@@ -46,7 +46,7 @@ extern "C" {
 
 /**
  * @defgroup switch_buffer Buffer Routines
- * @ingroup FREESWITCH 
+ * @ingroup core1
  * The purpose of this module is to make a plain buffering interface that can be used for read/write buffers
  * throughout the application.  The first implementation was done to provide the functionality and the interface
  * and I think it can be optimized under the hood as we go using bucket brigades and/or ring buffering techniques.
index 2234ed24652bcdf8580c33a9009fd758549b4118..9eaba7d92fd44fb992d73ffa6ce739e0e18512c2 100644 (file)
@@ -36,7 +36,7 @@
  */
 /**
  * @defgroup caller Caller Identity / Dialplan
- * @ingroup FREESWITCH 
+ * @ingroup core1
  *
  *     This module implements a caller profile which is a group of information about a connected endpoint
  *     such as common caller id and other useful information such as ip address and destination number.
index bae9adc42b7aa5bc7571ec6d4c865e0d4c435781..23bb912749b8c471b5cc4ab2a0bf21b05232f62f 100644 (file)
@@ -52,7 +52,7 @@ typedef struct {
 
 /**
  * @defgroup switch_channel Channel Functions
- * @ingroup FREESWITCH
+ * @ingroup core1
  *     The switch_channel object is a private entity that belongs to a session that contains the call
  *     specific information such as the call state, variables, caller profiles and DTMF queue
  * @{
index fe440524cc60d8c49c9a56fe150c5254a653c53d..f2ea148271b75f027f682057eed104132ec98b80 100644 (file)
@@ -37,7 +37,7 @@
 
 /**
  * @defgroup config Config File Parser
- * @ingroup FREESWITCH 
+ * @ingroup core1
  * This module implements a basic interface and file format parser it may be depricated in favor of database entries
  * or expanded to tie to external handlers in the future as necessary.
  * <pre>
index 4a5bf052aaf565f24f39626fc417e94c6f4b365f..604d4ee9ea89e301ffd8af002d80e3c06a0d1524 100644 (file)
@@ -51,7 +51,7 @@
 
 /*!
   \defgroup events Eventing Engine
-  \ingroup FREESWITCH
+  \ingroup core1
   \{ 
 */
 
index 3544450db74df14c261d0e5e28797274298d8858..ced4ad0c26221b08a01db8a28ba74785c77a9b60 100644 (file)
@@ -46,7 +46,7 @@ extern "C" {
 
 /**
  * @defgroup switch_ivr IVR Library
- * @ingroup FREESWITCH
+ * @ingroup core1
  *     A group of core functions to do IVR related functions designed to be 
  *     building blocks for a higher level IVR interface.
  * @{
index 2c7c3fc90f5c2156d9f089451ccc6a84a4fc7270..7d9b2e34bbbfe091c8b52b7ceda0603e596519d8 100644 (file)
@@ -49,7 +49,7 @@ extern "C" {
 
 /*!
   \defgroup mods Loadable Module Functions
-  \ingroup FREESWITCH
+  \ingroup core1
   \{ 
 */
 
index 7f6b49ecdd07d985268662591723ae40a1399c2d..a385d5ed20e296b6d887a3f06164f1559f3a0803 100644 (file)
@@ -48,6 +48,12 @@ extern "C" {
 #include <stdlib.h>
 #include <switch.h>
 
+/*!
+  \defgroup resamp Audio Resample Functions
+  \ingroup core1
+  \{ 
+*/
+
 /*! \brief An audio resampling handle */
 struct switch_audio_resampler {
        /*! a pointer to store the resampler object */
@@ -150,6 +156,8 @@ SWITCH_DECLARE(int) switch_short_to_float(short *s, float *f, int len);
  */
 SWITCH_DECLARE(void) switch_swap_linear(int16_t *buf, int len);
 
+///\}
+
 #ifdef __cplusplus
 }
 #endif
index 5154862fbda76c66d6fde7dcaf58ec5ef7c616c8..cc893dce19a127d0d83567c24b312dee9eed55e8 100644 (file)
@@ -43,7 +43,7 @@ extern "C" {
 
 /**
  * @defgroup switch_sqlite_top Brought To You By SQLite
- * @ingroup FREESWITCH 
+ * @ingroup FREESWITCH
  * @{
  */
 
index 213edd81fe43f0d8d5d0dcb2431c8abb1fce8fae..46b768d9a3708a19efaee028d7e4291d16c19b7d 100644 (file)
@@ -31,7 +31,7 @@
  */
 /*!
   \defgroup stun1 STUN code
-  \ingroup FREESWITCH
+  \ingroup core1
   \{
 */
 #ifndef _SWITCH_STUN_PARSER_H