diff options
author | Marco Bascetta <marco.bascetta@sadel.it> | 2015-05-08 13:51:17 +0200 |
---|---|---|
committer | Aleksander Morgado <aleksander@aleksander.es> | 2015-08-02 10:39:47 +0200 |
commit | 8edead919343809d7c4bd7732a15c1a6c3912cba (patch) | |
tree | dc74639d28a0446f0c2f1985f3f2b25d0397803c /libmm-glib/mm-call.h | |
parent | 40fae5fcbae32a37ae974245008359435e70a91f (diff) |
api,voice: added DTMF interface specification
Diffstat (limited to 'libmm-glib/mm-call.h')
-rw-r--r-- | libmm-glib/mm-call.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/libmm-glib/mm-call.h b/libmm-glib/mm-call.h index 3b7894c4..53c6bf1a 100644 --- a/libmm-glib/mm-call.h +++ b/libmm-glib/mm-call.h @@ -13,6 +13,7 @@ * GNU General Public License for more details: * * Copyright (C) 2015 Riccardo Vangelisti <riccardo.vangelisti@sadel.it> + * Copyright (C) 2015 Marco Bascetta <marco.bascetta@sadel.it> */ #ifndef _MM_CALL_H_ @@ -113,6 +114,22 @@ gboolean mm_call_hangup_sync (MMCall *self, GCancellable *cancellable, GError **error); + +void mm_call_send_tone (MMCall *self, + const gchar *tone, + GCancellable *cancellable, + GAsyncReadyCallback callback, + gpointer user_data); + +gboolean mm_call_send_tone_finish (MMCall *self, + GAsyncResult *res, + GError **error); + +gboolean mm_call_send_tone_sync (MMCall *self, + const gchar *tone, + GCancellable *cancellable, + GError **error); + G_END_DECLS #endif /* _MM_CALL_H_ */ |