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 /*** MODULEINFO 00029 <support_level>extended</support_level> 00030 ***/ 00031 00032 #include "asterisk.h" 00033 00034 ASTERISK_FILE_VERSION(__FILE__, "$Revision: 328209 $") 00035 00036 #include "asterisk/file.h" 00037 #include "asterisk/channel.h" 00038 #include "asterisk/pbx.h" 00039 #include "asterisk/config.h" 00040 #include "asterisk/module.h" 00041 #include "asterisk/lock.h" 00042 #include "asterisk/cli.h" 00043 00044 00045 static int unload_module(void) 00046 { 00047 return 0; 00048 } 00049 00050 static int load_module(void) 00051 { 00052 return AST_MODULE_LOAD_SUCCESS; 00053 } 00054 00055 AST_MODULE_INFO(ASTERISK_GPL_KEY, AST_MODFLAG_GLOBAL_SYMBOLS, "share-able code for AEL", 00056 .load = load_module, 00057 .unload = unload_module 00058 );