From 1584a74a4acdfb17aab0d6a2b13b18a7799aa37d Mon Sep 17 00:00:00 2001 From: laforge Date: Sat, 2 Sep 2006 10:32:06 +0000 Subject: first compiling (unfinished, not-working) version of userspace gsm infrastructure git-svn-id: http://svn.openmoko.org/trunk/src/target/gsm@40 99fdad57-331a-0410-800a-d7fa5415bdb3 --- src/libgsmd/libgsmd_voicecall.c | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 src/libgsmd/libgsmd_voicecall.c (limited to 'src/libgsmd/libgsmd_voicecall.c') diff --git a/src/libgsmd/libgsmd_voicecall.c b/src/libgsmd/libgsmd_voicecall.c new file mode 100644 index 0000000..f59bdff --- /dev/null +++ b/src/libgsmd/libgsmd_voicecall.c @@ -0,0 +1,24 @@ + + +#include + +#include "libgsmd/internals.h" + + +int lgsm_voice_out_init(struct lgsm_handle *lh, + const struct lgsm_addr *number) +{ + /* send ATD command */ + return -EINVAL; +} + +int lgsm_voice_in_accept(struct lgsm_handle *lh) +{ + return -EINVAL; +} + +int lgsm_voice_hangup(struct lgsm_handle *lh) +{ + /* Send ATH0 */ + return -EINVAL; +} -- cgit v1.2.3