Wed Jan 8 2020 09:49:49

Asterisk developer's documentation


res_ael_share.c
Go to the documentation of this file.
1 /*
2  * Asterisk -- An open source telephony toolkit.
3  *
4  * Copyright (C) 2007, Digium, Inc.
5  *
6  * Steve Murphy <murf@digium.com>
7  *
8  * See http://www.asterisk.org for more information about
9  * the Asterisk project. Please do not directly contact
10  * any of the maintainers of this project for assistance;
11  * the project provides a web site, mailing lists and IRC
12  * channels for your use.
13  *
14  * This program is free software, distributed under the terms of
15  * the GNU General Public License Version 2. See the LICENSE file
16  * at the top of the source tree.
17  */
18 
19 /*! \file
20  *
21  * \brief Shareable AEL code -- mainly between internal and external modules
22  *
23  * \author Steve Murphy <murf@digium.com>
24  *
25  * \ingroup applications
26  */
27 
28 /*** MODULEINFO
29  <support_level>extended</support_level>
30  ***/
31 
32 #include "asterisk.h"
33 
34 ASTERISK_FILE_VERSION(__FILE__, "$Revision: 328209 $")
35 
36 #include "asterisk/file.h"
37 #include "asterisk/channel.h"
38 #include "asterisk/pbx.h"
39 #include "asterisk/config.h"
40 #include "asterisk/module.h"
41 #include "asterisk/lock.h"
42 #include "asterisk/cli.h"
43 
44 
45 static int unload_module(void)
46 {
47  return 0;
48 }
49 
50 static int load_module(void)
51 {
53 }
54 
56  .load = load_module,
57  .unload = unload_module
58  );
Asterisk locking-related definitions:
Asterisk main include file. File version handling, generic pbx functions.
Configuration File Parser.
#define AST_MODULE_INFO(keystr, flags_to_set, desc, fields...)
Definition: module.h:374
General Asterisk PBX channel definitions.
Core PBX routines and definitions.
static int load_module(void)
Definition: res_ael_share.c:50
Standard Command Line Interface.
#define ASTERISK_GPL_KEY
The text the key() function should return.
Definition: module.h:38
Asterisk module definitions.
#define ASTERISK_FILE_VERSION(file, version)
Register/unregister a source code file with the core.
Definition: asterisk.h:180
static int unload_module(void)
Definition: res_ael_share.c:45