voice stuff
This commit is contained in:
parent
f3ca6245c5
commit
e1c9e7db4c
2 changed files with 5 additions and 4 deletions
|
@ -3,7 +3,7 @@
|
||||||
* (C)2005, Dan Ponte
|
* (C)2005, Dan Ponte
|
||||||
* BSDL w/ advert.
|
* BSDL w/ advert.
|
||||||
*/
|
*/
|
||||||
/* $Amigan: phoned/include/phoned.h,v 1.24 2005/06/22 22:00:09 dcp1990 Exp $ */
|
/* $Amigan: phoned/include/phoned.h,v 1.25 2005/06/22 22:01:47 dcp1990 Exp $ */
|
||||||
#include <pcre.h> /* fugly, I know... */
|
#include <pcre.h> /* fugly, I know... */
|
||||||
#define VERSION "0.1"
|
#define VERSION "0.1"
|
||||||
#define LOGFILE "-"
|
#define LOGFILE "-"
|
||||||
|
@ -203,6 +203,7 @@ void flush_logins(void);
|
||||||
short db_check_crend(char *loginna, char *pass);
|
short db_check_crend(char *loginna, char *pass);
|
||||||
cid_t *decode_sdmf(unsigned char *s);
|
cid_t *decode_sdmf(unsigned char *s);
|
||||||
cid_t *decode_mdmf(unsigned char *s);
|
cid_t *decode_mdmf(unsigned char *s);
|
||||||
|
void voice_init(void);
|
||||||
/* old stuff...
|
/* old stuff...
|
||||||
void modem_pickup(void);
|
void modem_pickup(void);
|
||||||
void modem_hangup(void);
|
void modem_hangup(void);
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
# cnd Makefile
|
# cnd Makefile
|
||||||
# (C)2005, Dan Ponte
|
# (C)2005, Dan Ponte
|
||||||
# $Amigan: phoned/phoned/Makefile,v 1.13 2005/06/20 01:39:50 dcp1990 Exp $
|
# $Amigan: phoned/phoned/Makefile,v 1.14 2005/06/22 22:01:47 dcp1990 Exp $
|
||||||
include ../global.mk
|
include ../global.mk
|
||||||
# basic stuff. we append for a reason.
|
# basic stuff. we append for a reason.
|
||||||
CPPFLAGS+=-I../include -DDEBUG -DYY_NO_UNPUT
|
CPPFLAGS+=-I../include -DDEBUG -DYY_NO_UNPUT
|
||||||
|
@ -8,8 +8,8 @@ CFLAGS+=-g -Wall -W -ansi ${CPPFLAGS} -pthread
|
||||||
LDFLAGS+=-lutil -lpcre -lsqlite3
|
LDFLAGS+=-lutil -lpcre -lsqlite3
|
||||||
# keep these up to date.
|
# keep these up to date.
|
||||||
MAINBIN=phoned
|
MAINBIN=phoned
|
||||||
SRCS=main.c init.c log.c cfg.c socket.c y.tab.c lex.yy.c signals.c cid.c modem.c notify.c filters.c remote.c db.c md5.c
|
SRCS=main.c init.c log.c cfg.c socket.c y.tab.c lex.yy.c signals.c cid.c modem.c notify.c filters.c remote.c db.c md5.c voice.c
|
||||||
OBJS=main.o init.o log.o cfg.o socket.o y.tab.o lex.yy.o signals.o cid.o modem.o notify.o filters.o remote.o db.o md5.o \
|
OBJS=main.o init.o log.o cfg.o socket.o y.tab.o lex.yy.o signals.o cid.o modem.o notify.o filters.o remote.o db.o md5.o voice.o \
|
||||||
modems/libmodems.a
|
modems/libmodems.a
|
||||||
OHDRS=y.tab.h
|
OHDRS=y.tab.h
|
||||||
CLEANFILES=y.tab.c y.tab.h lex.yy.c
|
CLEANFILES=y.tab.c y.tab.h lex.yy.c
|
||||||
|
|
Loading…
Reference in a new issue