[asterisk-commits] branch group/new_loader_completion r29050 - /team/group/new_loader_completion...

asterisk-commits at lists.digium.com asterisk-commits at lists.digium.com
Sat May 20 10:25:39 MST 2006


Author: kpfleming
Date: Sat May 20 12:25:38 2006
New Revision: 29050

URL: http://svn.digium.com/view/asterisk?rev=29050&view=rev
Log:
add a C++ module interface for this channel driver

Added:
    team/group/new_loader_completion/channels/vpb_module_interface.c   (with props)
Modified:
    team/group/new_loader_completion/channels/chan_vpb.c

Modified: team/group/new_loader_completion/channels/chan_vpb.c
URL: http://svn.digium.com/view/asterisk/team/group/new_loader_completion/channels/chan_vpb.c?rev=29050&r1=29049&r2=29050&view=diff
==============================================================================
--- team/group/new_loader_completion/channels/chan_vpb.c (original)
+++ team/group/new_loader_completion/channels/chan_vpb.c Sat May 20 12:25:38 2006
@@ -3042,5 +3042,3 @@
  }
 #endif
 /**/
-
-

Added: team/group/new_loader_completion/channels/vpb_module_interface.c
URL: http://svn.digium.com/view/asterisk/team/group/new_loader_completion/channels/vpb_module_interface.c?rev=29050&view=auto
==============================================================================
--- team/group/new_loader_completion/channels/vpb_module_interface.c (added)
+++ team/group/new_loader_completion/channels/vpb_module_interface.c Sat May 20 12:25:38 2006
@@ -1,0 +1,34 @@
+/*
+ * Asterisk -- An open source telephony toolkit.
+ *
+ * Copyright (C) 2006, Digium, Inc.
+ *
+ * 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.
+ */
+
+#include <stdlib.h>
+#include <stdio.h>
+#include <string.h>
+#include <unistd.h>
+#include <fcntl.h>
+#include <sys/types.h>
+#include <sys/stat.h>
+
+#include "asterisk.h"
+
+ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
+
+#include "asterisk/module.h"
+
+extern int load_module(void);
+extern int unload_module(void);
+
+AST_MODULE_INFO_STANDARD(ASTERISK_GPL_KEY, "VoiceTronix V6PCI/V12PCI/V4PCI  API Support");

Propchange: team/group/new_loader_completion/channels/vpb_module_interface.c
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: team/group/new_loader_completion/channels/vpb_module_interface.c
------------------------------------------------------------------------------
    svn:keywords = Author Id Date Revision

Propchange: team/group/new_loader_completion/channels/vpb_module_interface.c
------------------------------------------------------------------------------
    svn:mime-type = text/plain



More information about the asterisk-commits mailing list