From 170bdc1abb8760534c70c7f5fd544dab50f51cb4 Mon Sep 17 00:00:00 2001 From: Philippe De Swert Date: Tue, 31 Oct 2017 10:39:32 +0200 Subject: [PATCH] include/voicecall : update ofono_voicecall_driver to support call last dialled number Add new DBUS method to enable calling the last dialled number. --- include/voicecall.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/include/voicecall.h b/include/voicecall.h index eb897e5e..6871a6b5 100644 --- a/include/voicecall.h +++ b/include/voicecall.h @@ -61,6 +61,10 @@ struct ofono_voicecall_driver { const struct ofono_phone_number *number, enum ofono_clir_option clir, ofono_voicecall_cb_t cb, void *data); + /* Dials the last number again, this handles the hfp profile last number + * dialing with the +BLDN AT command + */ + void (*dial_last)(struct ofono_voicecall *vc, ofono_voicecall_cb_t cb, void *data); /* Answers an incoming call, this usually corresponds to ATA */ void (*answer)(struct ofono_voicecall *vc, ofono_voicecall_cb_t cb, void *data);