Asterisk - The Open Source Telephony Project GIT-master-7e7a603
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#include "asterisk/file.h"
35#include "asterisk/channel.h"
36#include "asterisk/pbx.h"
37#include "asterisk/config.h"
38#include "asterisk/module.h"
39#include "asterisk/lock.h"
40#include "asterisk/cli.h"
41
42
43static int unload_module(void)
44{
45 return 0;
46}
47
48static int load_module(void)
49{
51}
52
54 .support_level = AST_MODULE_SUPPORT_EXTENDED,
55 .load = load_module,
56 .unload = unload_module
57);
Asterisk main include file. File version handling, generic pbx functions.
General Asterisk PBX channel definitions.
Standard Command Line Interface.
Generic File Format Support. Should be included by clients of the file handling routines....
Configuration File Parser.
Asterisk locking-related definitions:
Asterisk module definitions.
@ AST_MODFLAG_GLOBAL_SYMBOLS
Definition: module.h:316
#define AST_MODULE_INFO(keystr, flags_to_set, desc, fields...)
Definition: module.h:543
@ AST_MODULE_SUPPORT_EXTENDED
Definition: module.h:122
#define ASTERISK_GPL_KEY
The text the key() function should return.
Definition: module.h:46
@ AST_MODULE_LOAD_SUCCESS
Definition: module.h:70
Core PBX routines and definitions.
static int load_module(void)
Definition: res_ael_share.c:48
static int unload_module(void)
Definition: res_ael_share.c:43