From 3fcbca9b0c1ea0e8dd2ba2d43b07f8090339755d Mon Sep 17 00:00:00 2001 From: Simon Busch Date: Fri, 28 Oct 2011 19:08:29 +0200 Subject: Various changes to code and vala binding regarding call API Signed-off-by: Simon Busch --- include/call.h | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'include/call.h') 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 -- cgit v1.1