diff options
author | Simon Busch <morphis@gravedo.de> | 2011-10-28 19:08:29 +0200 |
---|---|---|
committer | Simon Busch <morphis@gravedo.de> | 2011-10-28 19:08:29 +0200 |
commit | 3fcbca9b0c1ea0e8dd2ba2d43b07f8090339755d (patch) | |
tree | d2e6c41576854445a41bf634266c0936f033a2e9 /include/call.h | |
parent | a38db5807753c279eba7480c0e63e0b6357fef34 (diff) | |
download | external_libsamsung-ipc-3fcbca9b0c1ea0e8dd2ba2d43b07f8090339755d.zip external_libsamsung-ipc-3fcbca9b0c1ea0e8dd2ba2d43b07f8090339755d.tar.gz external_libsamsung-ipc-3fcbca9b0c1ea0e8dd2ba2d43b07f8090339755d.tar.bz2 |
Various changes to code and vala binding regarding call API
Signed-off-by: Simon Busch <morphis@gravedo.de>
Diffstat (limited to 'include/call.h')
-rw-r--r-- | include/call.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/call.h b/include/call.h index d499371..809f9ed 100644 --- a/include/call.h +++ b/include/call.h @@ -54,6 +54,8 @@ #define IPC_CALL_TERM_MO 0x01 #define IPC_CALL_TERM_MT 0x02 +struct ipc_response; + struct ipc_call_outgoing { unsigned char type; // IPC_CALL_TYPE_... unsigned char identity; // IPC_CALL_IDENTITY_... @@ -89,5 +91,9 @@ struct ipc_call_status { void ipc_call_outgoing_setup(struct ipc_call_outgoing *message, unsigned char type, unsigned char identity, unsigned char prefix, char *number); +unsigned int ipc_call_list_response_get_num_entries(struct ipc_response *response); +struct ipc_call_list_entry* ipc_call_list_response_get_entry(struct ipc_response *response, unsigned int num); +char* ipc_call_list_response_get_entry_number(struct ipc_response *response, unsigned int num); + #endif |