00001 /* 00002 * Asterisk -- An open source telephony toolkit. 00003 * 00004 * Copyright (C) 2007, Digium, Inc. 00005 * 00006 * Steve Murphy <murf@digium.com> 00007 * 00008 * See http://www.asterisk.org for more information about 00009 * the Asterisk project. Please do not directly contact 00010 * any of the maintainers of this project for assistance; 00011 * the project provides a web site, mailing lists and IRC 00012 * channels for your use. 00013 * 00014 * This program is free software, distributed under the terms of 00015 * the GNU General Public License Version 2. See the LICENSE file 00016 * at the top of the source tree. 00017 */ 00018 00019 /*! \file 00020 * 00021 * \brief Shareable AEL code -- mainly between internal and external modules 00022 * 00023 * \author Steve Murphy <murf@digium.com> 00024 * 00025 * \ingroup applications 00026 */ 00027 00028 #include "asterisk.h" 00029 00030 ASTERISK_FILE_VERSION(__FILE__, "$Revision: 89511 $") 00031 00032 #include "asterisk/file.h" 00033 #include "asterisk/channel.h" 00034 #include "asterisk/pbx.h" 00035 #include "asterisk/config.h" 00036 #include "asterisk/module.h" 00037 #include "asterisk/lock.h" 00038 #include "asterisk/cli.h" 00039 00040 00041 static int unload_module(void) 00042 { 00043 return 0; 00044 } 00045 00046 static int load_module(void) 00047 { 00048 return AST_MODULE_LOAD_SUCCESS; 00049 } 00050 00051 AST_MODULE_INFO(ASTERISK_GPL_KEY, AST_MODFLAG_GLOBAL_SYMBOLS, "share-able code for AEL", 00052 .load = load_module, 00053 .unload = unload_module 00054 );