23 lines
433 B
C
23 lines
433 B
C
![]() |
/*
|
||
|
* (CAPI*)
|
||
|
*
|
||
|
* An implementation of Common ISDN API 2.0 for Asterisk
|
||
|
*
|
||
|
* Copyright (C) 2006-2007 Cytronics & Melware
|
||
|
*
|
||
|
* Armin Schindler <armin@melware.de>
|
||
|
*
|
||
|
* This program is free software and may be modified and
|
||
|
* distributed under the terms of the GNU Public License.
|
||
|
*/
|
||
|
|
||
|
#ifndef _PBX_CAPI_CHAT_H
|
||
|
#define _PBX_CAPI_CHAT_H
|
||
|
|
||
|
/*
|
||
|
* prototypes
|
||
|
*/
|
||
|
extern int pbx_capi_chat(struct ast_channel *c, char *param);
|
||
|
|
||
|
#endif
|