mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2025-04-21 12:27:27 +03:00
* adds a rewrite of the tapi drivers + sip app. this is the result of lars' gsoc 2010 project, Thanks ! git-svn-id: svn://svn.openwrt.org/openwrt/trunk@23840 3c298f89-4303-0410-b956-a3cf2f4a3e73
23 lines
570 B
C
23 lines
570 B
C
#ifndef __VMMC_PORT_H__
|
|
#define __VMMC_PORT_H__
|
|
|
|
#include "vmmc-alm.h"
|
|
#include "vmmc-sig.h"
|
|
|
|
void vmmc_port_free(struct vmmc *vmmc, struct vmmc_port *port);
|
|
|
|
int vmmc_port_ring(struct tapi_device *tdev, struct tapi_port *port, bool ring);
|
|
int vmmc_port_send_dtmf_event(struct tapi_device *tdev,
|
|
struct tapi_port *port, struct tapi_dtmf_event *event);
|
|
struct vmmc_port *vmmc_port_init(struct vmmc *vmmc, struct vmmc_port *port,
|
|
struct tapi_port *tport, unsigned int id);
|
|
|
|
struct vmmc_port
|
|
{
|
|
struct vmmc_alm alm;
|
|
struct vmmc_sig sig;
|
|
unsigned int sig_pin;
|
|
};
|
|
|
|
#endif
|