aboutsummaryrefslogtreecommitdiffstats
path: root/include/call.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/call.h')
-rw-r--r--include/call.h6
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