summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorDenis Kenzior <denis.kenzior@intel.com>2009-09-01 18:03:52 -0500
committerDenis Kenzior <denkenz@gmail.com>2009-09-01 18:14:59 -0500
commit4064f4ba7330499a5a62291a646559a4f6a9c555 (patch)
tree5c4c694436c6319ea12deaff62aef1aa56404880 /include
parente5577046f06e8501d313e669b35455399ff09585 (diff)
downloadofono-4064f4ba7330499a5a62291a646559a4f6a9c555.tar.bz2
Add vendor flag capability to voicecalls
Diffstat (limited to 'include')
-rw-r--r--include/voicecall.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/voicecall.h b/include/voicecall.h
index 2ccc5548..e22b0ca5 100644
--- a/include/voicecall.h
+++ b/include/voicecall.h
@@ -46,7 +46,7 @@ typedef void (*ofono_call_list_cb_t)(const struct ofono_error *error,
*/
struct ofono_voicecall_driver {
const char *name;
- int (*probe)(struct ofono_voicecall *vc);
+ int (*probe)(struct ofono_voicecall *vc, int vendor, void *data);
int (*remove)(struct ofono_voicecall *vc);
void (*dial)(struct ofono_voicecall *vc,
const struct ofono_phone_number *number,
@@ -93,6 +93,7 @@ int ofono_voicecall_driver_register(const struct ofono_voicecall_driver *d);
void ofono_voicecall_driver_unregister(const struct ofono_voicecall_driver *d);
struct ofono_voicecall *ofono_voicecall_create(struct ofono_modem *modem,
+ int vendor,
const char *driver, void *data);
void ofono_voicecall_register(struct ofono_voicecall *vc);