Skip to content

Commit

Permalink
voicecall: Add support for dialing number at a given memory location
Browse files Browse the repository at this point in the history
Add a new function to be able to dial numbers from memory/favourites.

Conflicts:
	ofono/include/voicecall.h
  • Loading branch information
philippedeswert authored and monich committed Feb 5, 2020
1 parent 639fce8 commit f1aeedd
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion ofono/include/voicecall.h
Expand Up @@ -139,7 +139,12 @@ struct ofono_voicecall_driver {
/* 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);
void (*dial_last)(struct ofono_voicecall *vc, ofono_voicecall_cb_t cb,
void *data);
/* dials a number at a given memory location */
void (*dial_memory)(struct ofono_voicecall *vc,
unsigned int memory_location, ofono_voicecall_cb_t cb,
void *data);
};

void ofono_voicecall_en_list_notify(struct ofono_voicecall *vc,
Expand Down

0 comments on commit f1aeedd

Please sign in to comment.