[asterisk-commits] murf: branch murf/bug_7638 r79590 - /team/murf/bug_7638/res/res_ael_share.c

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Wed Aug 15 11:19:05 CDT 2007


Author: murf
Date: Wed Aug 15 11:19:04 2007
New Revision: 79590

URL: http://svn.digium.com/view/asterisk?view=rev&rev=79590
Log:
Didn't get the ael shared stuff added. This rectifies this.

Added:
    team/murf/bug_7638/res/res_ael_share.c   (with props)

Added: team/murf/bug_7638/res/res_ael_share.c
URL: http://svn.digium.com/view/asterisk/team/murf/bug_7638/res/res_ael_share.c?view=auto&rev=79590
==============================================================================
--- team/murf/bug_7638/res/res_ael_share.c (added)
+++ team/murf/bug_7638/res/res_ael_share.c Wed Aug 15 11:19:04 2007
@@ -1,0 +1,61 @@
+/*
+ * Asterisk -- An open source telephony toolkit.
+ *
+ * Copyright (C) 2007, Digium, Inc.
+ *
+ * Steve Murphy <murf at digium.com>
+ *
+ * See http://www.asterisk.org for more information about
+ * the Asterisk project. Please do not directly contact
+ * any of the maintainers of this project for assistance;
+ * the project provides a web site, mailing lists and IRC
+ * channels for your use.
+ *
+ * This program is free software, distributed under the terms of
+ * the GNU General Public License Version 2. See the LICENSE file
+ * at the top of the source tree.
+ */
+
+/*! \file
+ *
+ * \brief Shareable AEL code -- mainly between internal and external modules
+ *
+ * \author Steve Murphy <murf at digium.com>
+ * 
+ * \ingroup applications
+ */
+
+#include "asterisk.h"
+
+ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
+
+#include <stdlib.h>
+#include <stdio.h>
+#include <string.h>
+#include <unistd.h>
+
+#include "asterisk/file.h"
+#include "asterisk/logger.h"
+#include "asterisk/channel.h"
+#include "asterisk/options.h"
+#include "asterisk/pbx.h"
+#include "asterisk/config.h"
+#include "asterisk/module.h"
+#include "asterisk/lock.h"
+#include "asterisk/cli.h"
+
+
+static int unload_module(void)
+{
+	return 0;
+}
+
+static int load_module(void)
+{
+	return 0;
+}
+
+AST_MODULE_INFO(ASTERISK_GPL_KEY, AST_MODFLAG_GLOBAL_SYMBOLS, "share-able code for AEL",
+				.load = load_module,
+				.unload = unload_module
+	);

Propchange: team/murf/bug_7638/res/res_ael_share.c
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: team/murf/bug_7638/res/res_ael_share.c
------------------------------------------------------------------------------
    svn:keywords = Author Id Date Revision

Propchange: team/murf/bug_7638/res/res_ael_share.c
------------------------------------------------------------------------------
    svn:mime-type = text/plain




More information about the asterisk-commits mailing list