initial doxygen. Much, much more to go.
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@251 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
parent
d5945f8174
commit
f78b600507
|
@ -119,6 +119,8 @@ install_mod: modules
|
||||||
@/bin/cp -f src/mod/*/mod_*.so $(PREFIX)/mod >/dev/null 2<&1 || echo No modules to copy.
|
@/bin/cp -f src/mod/*/mod_*.so $(PREFIX)/mod >/dev/null 2<&1 || echo No modules to copy.
|
||||||
@echo done
|
@echo done
|
||||||
|
|
||||||
|
dox:
|
||||||
|
doxygen $(PWD)/docs/Doxygen.conf
|
||||||
|
|
||||||
eclean: clean
|
eclean: clean
|
||||||
rm -f `find . -type f -name \*~`
|
rm -f `find . -type f -name \*~`
|
||||||
|
|
|
@ -0,0 +1,259 @@
|
||||||
|
# Doxyfile 1.4.6
|
||||||
|
|
||||||
|
#---------------------------------------------------------------------------
|
||||||
|
# Project related configuration options
|
||||||
|
#---------------------------------------------------------------------------
|
||||||
|
PROJECT_NAME = FreeSwitch
|
||||||
|
PROJECT_NUMBER =
|
||||||
|
OUTPUT_DIRECTORY = .
|
||||||
|
CREATE_SUBDIRS = NO
|
||||||
|
OUTPUT_LANGUAGE = English
|
||||||
|
USE_WINDOWS_ENCODING = YES
|
||||||
|
BRIEF_MEMBER_DESC = YES
|
||||||
|
REPEAT_BRIEF = YES
|
||||||
|
ABBREVIATE_BRIEF = "The $name class" \
|
||||||
|
"The $name widget" \
|
||||||
|
"The $name file" \
|
||||||
|
is \
|
||||||
|
provides \
|
||||||
|
specifies \
|
||||||
|
contains \
|
||||||
|
represents \
|
||||||
|
a \
|
||||||
|
an \
|
||||||
|
the
|
||||||
|
ALWAYS_DETAILED_SEC = NO
|
||||||
|
INLINE_INHERITED_MEMB = NO
|
||||||
|
FULL_PATH_NAMES = NO
|
||||||
|
STRIP_FROM_PATH =
|
||||||
|
STRIP_FROM_INC_PATH =
|
||||||
|
SHORT_NAMES = NO
|
||||||
|
JAVADOC_AUTOBRIEF = NO
|
||||||
|
MULTILINE_CPP_IS_BRIEF = NO
|
||||||
|
DETAILS_AT_TOP = NO
|
||||||
|
INHERIT_DOCS = YES
|
||||||
|
SEPARATE_MEMBER_PAGES = NO
|
||||||
|
TAB_SIZE = 8
|
||||||
|
ALIASES =
|
||||||
|
OPTIMIZE_OUTPUT_FOR_C = YES
|
||||||
|
OPTIMIZE_OUTPUT_JAVA = NO
|
||||||
|
BUILTIN_STL_SUPPORT = NO
|
||||||
|
DISTRIBUTE_GROUP_DOC = NO
|
||||||
|
SUBGROUPING = YES
|
||||||
|
#---------------------------------------------------------------------------
|
||||||
|
# Build related configuration options
|
||||||
|
#---------------------------------------------------------------------------
|
||||||
|
EXTRACT_ALL = NO
|
||||||
|
EXTRACT_PRIVATE = NO
|
||||||
|
EXTRACT_STATIC = NO
|
||||||
|
EXTRACT_LOCAL_CLASSES = YES
|
||||||
|
EXTRACT_LOCAL_METHODS = NO
|
||||||
|
HIDE_UNDOC_MEMBERS = YES
|
||||||
|
HIDE_UNDOC_CLASSES = YES
|
||||||
|
HIDE_FRIEND_COMPOUNDS = NO
|
||||||
|
HIDE_IN_BODY_DOCS = NO
|
||||||
|
INTERNAL_DOCS = NO
|
||||||
|
CASE_SENSE_NAMES = NO
|
||||||
|
HIDE_SCOPE_NAMES = NO
|
||||||
|
SHOW_INCLUDE_FILES = YES
|
||||||
|
INLINE_INFO = YES
|
||||||
|
SORT_MEMBER_DOCS = YES
|
||||||
|
SORT_BRIEF_DOCS = NO
|
||||||
|
SORT_BY_SCOPE_NAME = NO
|
||||||
|
GENERATE_TODOLIST = YES
|
||||||
|
GENERATE_TESTLIST = YES
|
||||||
|
GENERATE_BUGLIST = YES
|
||||||
|
GENERATE_DEPRECATEDLIST= YES
|
||||||
|
ENABLED_SECTIONS =
|
||||||
|
MAX_INITIALIZER_LINES = 30
|
||||||
|
SHOW_USED_FILES = YES
|
||||||
|
SHOW_DIRECTORIES = NO
|
||||||
|
FILE_VERSION_FILTER =
|
||||||
|
#---------------------------------------------------------------------------
|
||||||
|
# configuration options related to warning and progress messages
|
||||||
|
#---------------------------------------------------------------------------
|
||||||
|
QUIET = NO
|
||||||
|
WARNINGS = YES
|
||||||
|
WARN_IF_UNDOCUMENTED = YES
|
||||||
|
WARN_IF_DOC_ERROR = YES
|
||||||
|
WARN_NO_PARAMDOC = NO
|
||||||
|
WARN_FORMAT = "$file:$line: $text"
|
||||||
|
WARN_LOGFILE =
|
||||||
|
#---------------------------------------------------------------------------
|
||||||
|
# configuration options related to the input files
|
||||||
|
#---------------------------------------------------------------------------
|
||||||
|
INPUT = ../src
|
||||||
|
FILE_PATTERNS = *.c \
|
||||||
|
*.cc \
|
||||||
|
*.cxx \
|
||||||
|
*.cpp \
|
||||||
|
*.c++ \
|
||||||
|
*.d \
|
||||||
|
*.java \
|
||||||
|
*.ii \
|
||||||
|
*.ixx \
|
||||||
|
*.ipp \
|
||||||
|
*.i++ \
|
||||||
|
*.inl \
|
||||||
|
*.h \
|
||||||
|
*.hh \
|
||||||
|
*.hxx \
|
||||||
|
*.hpp \
|
||||||
|
*.h++ \
|
||||||
|
*.idl \
|
||||||
|
*.odl \
|
||||||
|
*.cs \
|
||||||
|
*.php \
|
||||||
|
*.php3 \
|
||||||
|
*.inc \
|
||||||
|
*.m \
|
||||||
|
*.mm \
|
||||||
|
*.dox \
|
||||||
|
*.py
|
||||||
|
RECURSIVE = YES
|
||||||
|
EXCLUDE =
|
||||||
|
EXCLUDE_SYMLINKS = NO
|
||||||
|
EXCLUDE_PATTERNS =
|
||||||
|
EXAMPLE_PATH =
|
||||||
|
EXAMPLE_PATTERNS = *
|
||||||
|
EXAMPLE_RECURSIVE = NO
|
||||||
|
IMAGE_PATH =
|
||||||
|
INPUT_FILTER =
|
||||||
|
FILTER_PATTERNS =
|
||||||
|
FILTER_SOURCE_FILES = NO
|
||||||
|
#---------------------------------------------------------------------------
|
||||||
|
# configuration options related to source browsing
|
||||||
|
#---------------------------------------------------------------------------
|
||||||
|
SOURCE_BROWSER = NO
|
||||||
|
INLINE_SOURCES = NO
|
||||||
|
STRIP_CODE_COMMENTS = YES
|
||||||
|
REFERENCED_BY_RELATION = NO
|
||||||
|
REFERENCES_RELATION = NO
|
||||||
|
USE_HTAGS = NO
|
||||||
|
VERBATIM_HEADERS = NO
|
||||||
|
#---------------------------------------------------------------------------
|
||||||
|
# configuration options related to the alphabetical class index
|
||||||
|
#---------------------------------------------------------------------------
|
||||||
|
ALPHABETICAL_INDEX = NO
|
||||||
|
COLS_IN_ALPHA_INDEX = 5
|
||||||
|
IGNORE_PREFIX =
|
||||||
|
#---------------------------------------------------------------------------
|
||||||
|
# configuration options related to the HTML output
|
||||||
|
#---------------------------------------------------------------------------
|
||||||
|
GENERATE_HTML = YES
|
||||||
|
HTML_OUTPUT = html
|
||||||
|
HTML_FILE_EXTENSION = .html
|
||||||
|
HTML_HEADER =
|
||||||
|
HTML_FOOTER =
|
||||||
|
HTML_STYLESHEET =
|
||||||
|
HTML_ALIGN_MEMBERS = YES
|
||||||
|
GENERATE_HTMLHELP = NO
|
||||||
|
CHM_FILE =
|
||||||
|
HHC_LOCATION =
|
||||||
|
GENERATE_CHI = NO
|
||||||
|
BINARY_TOC = NO
|
||||||
|
TOC_EXPAND = NO
|
||||||
|
DISABLE_INDEX = NO
|
||||||
|
ENUM_VALUES_PER_LINE = 4
|
||||||
|
GENERATE_TREEVIEW = YES
|
||||||
|
TREEVIEW_WIDTH = 250
|
||||||
|
#---------------------------------------------------------------------------
|
||||||
|
# configuration options related to the LaTeX output
|
||||||
|
#---------------------------------------------------------------------------
|
||||||
|
GENERATE_LATEX = NO
|
||||||
|
LATEX_OUTPUT = latex
|
||||||
|
LATEX_CMD_NAME = latex
|
||||||
|
MAKEINDEX_CMD_NAME = makeindex
|
||||||
|
COMPACT_LATEX = NO
|
||||||
|
PAPER_TYPE = a4wide
|
||||||
|
EXTRA_PACKAGES =
|
||||||
|
LATEX_HEADER =
|
||||||
|
PDF_HYPERLINKS = NO
|
||||||
|
USE_PDFLATEX = NO
|
||||||
|
LATEX_BATCHMODE = NO
|
||||||
|
LATEX_HIDE_INDICES = NO
|
||||||
|
#---------------------------------------------------------------------------
|
||||||
|
# configuration options related to the RTF output
|
||||||
|
#---------------------------------------------------------------------------
|
||||||
|
GENERATE_RTF = NO
|
||||||
|
RTF_OUTPUT = rtf
|
||||||
|
COMPACT_RTF = NO
|
||||||
|
RTF_HYPERLINKS = NO
|
||||||
|
RTF_STYLESHEET_FILE =
|
||||||
|
RTF_EXTENSIONS_FILE =
|
||||||
|
#---------------------------------------------------------------------------
|
||||||
|
# configuration options related to the man page output
|
||||||
|
#---------------------------------------------------------------------------
|
||||||
|
GENERATE_MAN = NO
|
||||||
|
MAN_OUTPUT = man
|
||||||
|
MAN_EXTENSION = .3
|
||||||
|
MAN_LINKS = NO
|
||||||
|
#---------------------------------------------------------------------------
|
||||||
|
# configuration options related to the XML output
|
||||||
|
#---------------------------------------------------------------------------
|
||||||
|
GENERATE_XML = NO
|
||||||
|
XML_OUTPUT = xml
|
||||||
|
XML_SCHEMA =
|
||||||
|
XML_DTD =
|
||||||
|
XML_PROGRAMLISTING = YES
|
||||||
|
#---------------------------------------------------------------------------
|
||||||
|
# configuration options for the AutoGen Definitions output
|
||||||
|
#---------------------------------------------------------------------------
|
||||||
|
GENERATE_AUTOGEN_DEF = NO
|
||||||
|
#---------------------------------------------------------------------------
|
||||||
|
# configuration options related to the Perl module output
|
||||||
|
#---------------------------------------------------------------------------
|
||||||
|
GENERATE_PERLMOD = NO
|
||||||
|
PERLMOD_LATEX = NO
|
||||||
|
PERLMOD_PRETTY = YES
|
||||||
|
PERLMOD_MAKEVAR_PREFIX =
|
||||||
|
#---------------------------------------------------------------------------
|
||||||
|
# Configuration options related to the preprocessor
|
||||||
|
#---------------------------------------------------------------------------
|
||||||
|
ENABLE_PREPROCESSING = YES
|
||||||
|
MACRO_EXPANSION = YES
|
||||||
|
EXPAND_ONLY_PREDEF = YES
|
||||||
|
SEARCH_INCLUDES = YES
|
||||||
|
INCLUDE_PATH =
|
||||||
|
INCLUDE_FILE_PATTERNS =
|
||||||
|
PREDEFINED = SWITCH_DECLARE(x)=x
|
||||||
|
EXPAND_AS_DEFINED = YES
|
||||||
|
SKIP_FUNCTION_MACROS = YES
|
||||||
|
#---------------------------------------------------------------------------
|
||||||
|
# Configuration::additions related to external references
|
||||||
|
#---------------------------------------------------------------------------
|
||||||
|
TAGFILES =
|
||||||
|
GENERATE_TAGFILE =
|
||||||
|
ALLEXTERNALS = NO
|
||||||
|
EXTERNAL_GROUPS = YES
|
||||||
|
PERL_PATH = /usr/bin/perl
|
||||||
|
#---------------------------------------------------------------------------
|
||||||
|
# Configuration options related to the dot tool
|
||||||
|
#---------------------------------------------------------------------------
|
||||||
|
CLASS_DIAGRAMS = YES
|
||||||
|
HIDE_UNDOC_RELATIONS = YES
|
||||||
|
HAVE_DOT = NO
|
||||||
|
CLASS_GRAPH = YES
|
||||||
|
COLLABORATION_GRAPH = YES
|
||||||
|
GROUP_GRAPHS = YES
|
||||||
|
UML_LOOK = NO
|
||||||
|
TEMPLATE_RELATIONS = NO
|
||||||
|
INCLUDE_GRAPH = YES
|
||||||
|
INCLUDED_BY_GRAPH = YES
|
||||||
|
CALL_GRAPH = NO
|
||||||
|
GRAPHICAL_HIERARCHY = YES
|
||||||
|
DIRECTORY_GRAPH = YES
|
||||||
|
DOT_IMAGE_FORMAT = png
|
||||||
|
DOT_PATH =
|
||||||
|
DOTFILE_DIRS =
|
||||||
|
MAX_DOT_GRAPH_WIDTH = 1024
|
||||||
|
MAX_DOT_GRAPH_HEIGHT = 1024
|
||||||
|
MAX_DOT_GRAPH_DEPTH = 1000
|
||||||
|
DOT_TRANSPARENT = NO
|
||||||
|
DOT_MULTI_TARGETS = NO
|
||||||
|
GENERATE_LEGEND = YES
|
||||||
|
DOT_CLEANUP = YES
|
||||||
|
#---------------------------------------------------------------------------
|
||||||
|
# Configuration::additions related to the search engine
|
||||||
|
#---------------------------------------------------------------------------
|
||||||
|
SEARCHENGINE = NO
|
|
@ -28,6 +28,10 @@
|
||||||
* switch.h -- Main Library Header
|
* switch.h -- Main Library Header
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
/*! \file switch.h
|
||||||
|
\brief Main Library Header
|
||||||
|
*/
|
||||||
|
|
||||||
#ifndef SWITCH_H
|
#ifndef SWITCH_H
|
||||||
#define SWITCH_H
|
#define SWITCH_H
|
||||||
|
|
||||||
|
|
|
@ -25,9 +25,12 @@
|
||||||
*
|
*
|
||||||
* Anthony Minessale II <anthmct@yahoo.com>
|
* Anthony Minessale II <anthmct@yahoo.com>
|
||||||
*
|
*
|
||||||
* switch_apr.h -- APR Header
|
* switch_apr.h -- APR includes header
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
/*! \file switch_apr.h
|
||||||
|
\brief APR includes header
|
||||||
|
*/
|
||||||
#ifndef SWITCH_APR_H
|
#ifndef SWITCH_APR_H
|
||||||
#define SWITCH_APR_H
|
#define SWITCH_APR_H
|
||||||
|
|
||||||
|
|
|
@ -29,6 +29,10 @@
|
||||||
* switch_buffer.h -- Data Buffering Code
|
* switch_buffer.h -- Data Buffering Code
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
/*! \file switch_buffer.h
|
||||||
|
\brief Data Buffering Code
|
||||||
|
*/
|
||||||
|
|
||||||
#ifndef SWITCH_BUFFER_H
|
#ifndef SWITCH_BUFFER_H
|
||||||
#define SWITCH_BUFFER_H
|
#define SWITCH_BUFFER_H
|
||||||
|
|
||||||
|
@ -40,12 +44,53 @@ extern "C" {
|
||||||
|
|
||||||
struct switch_buffer;
|
struct switch_buffer;
|
||||||
|
|
||||||
|
/*! \brief Allocate a new switch_buffer
|
||||||
|
* \param pool Pool to allocate the buffer from
|
||||||
|
* \param buffer returned pointer to the new buffer
|
||||||
|
* \param max_len length required by the buffer
|
||||||
|
* \return status
|
||||||
|
*/
|
||||||
SWITCH_DECLARE(switch_status) switch_buffer_create(switch_memory_pool *pool, switch_buffer **buffer, size_t max_len);
|
SWITCH_DECLARE(switch_status) switch_buffer_create(switch_memory_pool *pool, switch_buffer **buffer, size_t max_len);
|
||||||
|
|
||||||
|
/*! \brief Get the length of a switch_buffer
|
||||||
|
* \param buffer any buffer of type switch_buffer
|
||||||
|
* \return int size of the buffer.
|
||||||
|
*/
|
||||||
SWITCH_DECLARE(int) switch_buffer_len(switch_buffer *buffer);
|
SWITCH_DECLARE(int) switch_buffer_len(switch_buffer *buffer);
|
||||||
|
|
||||||
|
/*! \brief Get the freespace of a switch_buffer
|
||||||
|
* \param buffer any buffer of type switch_buffer
|
||||||
|
* \return int freespace in the buffer.
|
||||||
|
*/
|
||||||
SWITCH_DECLARE(int) switch_buffer_freespace(switch_buffer *buffer);
|
SWITCH_DECLARE(int) switch_buffer_freespace(switch_buffer *buffer);
|
||||||
|
|
||||||
|
/*! \brief Get the in use amount of a switch_buffer
|
||||||
|
* \param buffer any buffer of type switch_buffer
|
||||||
|
* \return int size of buffer curently in use
|
||||||
|
*/
|
||||||
SWITCH_DECLARE(int) switch_buffer_inuse(switch_buffer *buffer);
|
SWITCH_DECLARE(int) switch_buffer_inuse(switch_buffer *buffer);
|
||||||
|
|
||||||
|
/*! \brief Read data from a switch_buffer up to the ammount of datalen if it is available. Remove read data from buffer.
|
||||||
|
* \param buffer any buffer of type switch_buffer
|
||||||
|
* \param data pointer to the read data to be returned
|
||||||
|
* \param datalen amount of data to be returned
|
||||||
|
* \return int ammount of data actually read
|
||||||
|
*/
|
||||||
SWITCH_DECLARE(int) switch_buffer_read(switch_buffer *buffer, void *data, size_t datalen);
|
SWITCH_DECLARE(int) switch_buffer_read(switch_buffer *buffer, void *data, size_t datalen);
|
||||||
|
|
||||||
|
/*! \brief Write data into a switch_buffer up to the length of datalen
|
||||||
|
* \param buffer any buffer of type switch_buffer
|
||||||
|
* \param data pointer to the data to be written
|
||||||
|
* \param datalen amount of data to be written
|
||||||
|
* \return int ammount of buffer used after the write, or 0 if no space available
|
||||||
|
*/
|
||||||
SWITCH_DECLARE(int) switch_buffer_write(switch_buffer *buffer, void *data, size_t datalen);
|
SWITCH_DECLARE(int) switch_buffer_write(switch_buffer *buffer, void *data, size_t datalen);
|
||||||
|
|
||||||
|
/*! \brief Remove data from the buffer
|
||||||
|
* \param buffer any buffer of type switch_buffer
|
||||||
|
* \param datalen amount of data to be returned
|
||||||
|
* \return int ammount of buffer used after the toss, or 0 if unable to toss that much data
|
||||||
|
*/
|
||||||
SWITCH_DECLARE(int) switch_buffer_toss(switch_buffer *buffer, size_t datalen);
|
SWITCH_DECLARE(int) switch_buffer_toss(switch_buffer *buffer, size_t datalen);
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -29,6 +29,10 @@
|
||||||
* switch_caller.h -- Caller Identification
|
* switch_caller.h -- Caller Identification
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
/*! \file switch_caller.h
|
||||||
|
\brief Caller Identification
|
||||||
|
*/
|
||||||
|
|
||||||
#ifndef SWITCH_CALLER_H
|
#ifndef SWITCH_CALLER_H
|
||||||
#define SWITCH_CALLER_H
|
#define SWITCH_CALLER_H
|
||||||
|
|
||||||
|
|
|
@ -29,6 +29,10 @@
|
||||||
* switch_channel.h -- Media Channel Interface
|
* switch_channel.h -- Media Channel Interface
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
/*! \file switch_channel.h
|
||||||
|
\brief Media Channel Interface
|
||||||
|
*/
|
||||||
|
|
||||||
#ifndef SWITCH_CHANNEL_H
|
#ifndef SWITCH_CHANNEL_H
|
||||||
#define SWITCH_CHANNEL_H
|
#define SWITCH_CHANNEL_H
|
||||||
|
|
||||||
|
|
|
@ -29,6 +29,10 @@
|
||||||
* switch_config.h -- Configuration File Parser
|
* switch_config.h -- Configuration File Parser
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
/*! \file switch_config.h
|
||||||
|
\brief Configuration File Parser
|
||||||
|
*/
|
||||||
|
|
||||||
#ifndef SWITCH_CONFIG_H
|
#ifndef SWITCH_CONFIG_H
|
||||||
#define SWITCH_CONFIG_H
|
#define SWITCH_CONFIG_H
|
||||||
|
|
||||||
|
|
|
@ -29,6 +29,10 @@
|
||||||
* switch_console.h -- Simple Console
|
* switch_console.h -- Simple Console
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
/*! \file switch_console.h
|
||||||
|
\brief Simple Console
|
||||||
|
*/
|
||||||
|
|
||||||
#ifndef SWITCH_CONSOLE_H
|
#ifndef SWITCH_CONSOLE_H
|
||||||
#define SWITCH_CONSOLE_H
|
#define SWITCH_CONSOLE_H
|
||||||
|
|
||||||
|
|
|
@ -29,6 +29,10 @@
|
||||||
* switch_core.h -- Core Library
|
* switch_core.h -- Core Library
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
/*! \file switch_core.h
|
||||||
|
\brief Core Library
|
||||||
|
*/
|
||||||
|
|
||||||
#ifndef SWITCH_CORE_H
|
#ifndef SWITCH_CORE_H
|
||||||
#define SWITCH_CORE_H
|
#define SWITCH_CORE_H
|
||||||
|
|
||||||
|
|
|
@ -29,6 +29,10 @@
|
||||||
* switch_event.h -- Event System
|
* switch_event.h -- Event System
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
/*! \file switch_event.h
|
||||||
|
\brief Event System
|
||||||
|
*/
|
||||||
|
|
||||||
#ifndef SWITCH_EVENT_H
|
#ifndef SWITCH_EVENT_H
|
||||||
#define SWITCH_EVENT_H
|
#define SWITCH_EVENT_H
|
||||||
|
|
||||||
|
|
|
@ -29,6 +29,10 @@
|
||||||
* switch_frame.h -- Media Frame Structure
|
* switch_frame.h -- Media Frame Structure
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
/*! \file switch_frame.h
|
||||||
|
\brief Media Frame Structure
|
||||||
|
*/
|
||||||
|
|
||||||
#ifndef SWITCH_FRAME_H
|
#ifndef SWITCH_FRAME_H
|
||||||
#define SWITCH_FRAME_H
|
#define SWITCH_FRAME_H
|
||||||
|
|
||||||
|
|
|
@ -29,6 +29,10 @@
|
||||||
* switch_loadable_module.h -- Loadable Modules
|
* switch_loadable_module.h -- Loadable Modules
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
/*! \file switch_loadable_module.h
|
||||||
|
\brief Loadable Modules
|
||||||
|
*/
|
||||||
|
|
||||||
#ifndef SWITCH_LOADABLE_MODULE_H
|
#ifndef SWITCH_LOADABLE_MODULE_H
|
||||||
#define SWITCH_LOADABLE_MODULE_H
|
#define SWITCH_LOADABLE_MODULE_H
|
||||||
|
|
||||||
|
|
|
@ -29,6 +29,9 @@
|
||||||
* switch_module_interfaces.h -- Module Interface Definitions
|
* switch_module_interfaces.h -- Module Interface Definitions
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
/*! \file switch_module_interfaces.h
|
||||||
|
\brief Module Interface Definitions
|
||||||
|
*/
|
||||||
#ifndef SWITCH_MODULE_INTERFACES_H
|
#ifndef SWITCH_MODULE_INTERFACES_H
|
||||||
#define SWITCH_MODULE_INTERFACES_H
|
#define SWITCH_MODULE_INTERFACES_H
|
||||||
|
|
||||||
|
|
|
@ -29,6 +29,9 @@
|
||||||
* switch_mutex.h -- Mutex Locking
|
* switch_mutex.h -- Mutex Locking
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
/*! \file switch_mutex.h
|
||||||
|
\brief Mutex Locking
|
||||||
|
*/
|
||||||
#ifndef SWITCH_MUTEX_H
|
#ifndef SWITCH_MUTEX_H
|
||||||
#define SWITCH_MUTEX_H
|
#define SWITCH_MUTEX_H
|
||||||
|
|
||||||
|
|
|
@ -28,6 +28,9 @@
|
||||||
* switch_platform.h -- Platform Specific Header
|
* switch_platform.h -- Platform Specific Header
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
/*! \file switch_platform.h
|
||||||
|
\brief Platform Specific Header
|
||||||
|
*/
|
||||||
#ifndef SWITCH_PLATFORM_H
|
#ifndef SWITCH_PLATFORM_H
|
||||||
#define SWITCH_PLATFORM_H
|
#define SWITCH_PLATFORM_H
|
||||||
|
|
||||||
|
|
|
@ -28,6 +28,9 @@
|
||||||
* switch_sqlite.h -- Sqlite Header
|
* switch_sqlite.h -- Sqlite Header
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
/*! \file switch_sqlite.h
|
||||||
|
\brief Sqlite Header
|
||||||
|
*/
|
||||||
#ifndef SWITCH_SQLITE_H
|
#ifndef SWITCH_SQLITE_H
|
||||||
#define SWITCH_SQLITE_H
|
#define SWITCH_SQLITE_H
|
||||||
|
|
||||||
|
|
|
@ -28,6 +28,9 @@
|
||||||
* switch_types.h -- Data Types
|
* switch_types.h -- Data Types
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
/*! \file switch_types.h
|
||||||
|
\brief Data Types
|
||||||
|
*/
|
||||||
#ifndef SWITCH_TYPES_H
|
#ifndef SWITCH_TYPES_H
|
||||||
#define SWITCH_TYPES_H
|
#define SWITCH_TYPES_H
|
||||||
|
|
||||||
|
|
|
@ -29,6 +29,9 @@
|
||||||
* switch_utils.h -- Compatability and Helper Code
|
* switch_utils.h -- Compatability and Helper Code
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
/*! \file switch_utils.h
|
||||||
|
\brief Compatability and Helper Code
|
||||||
|
*/
|
||||||
#ifndef SWITCH_UTILS_H
|
#ifndef SWITCH_UTILS_H
|
||||||
#define SWITCH_UTILS_H
|
#define SWITCH_UTILS_H
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue