blob: 25c565d2418e74e05045a12577e7efac243bfd63 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
#include <libgsmd/voicecall.h>
#include "lgsm_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;
}
|