blob: f59bdffbec6af59c1c639299327e5da673698c83 (
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 "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;
}
|