aboutsummaryrefslogtreecommitdiffstats
path: root/include/call.h
diff options
context:
space:
mode:
authorSimon Busch <morphis@gravedo.de>2011-10-29 18:38:42 +0200
committerSimon Busch <morphis@gravedo.de>2011-10-29 18:38:42 +0200
commitb722c61ccd5fea0e19ec4e3274a37cd99fa1b7d5 (patch)
treecb2688709e0f86541c6094d82d7d53b2d7b558c3 /include/call.h
parentd74590f98e59ad6c4fcbef8b9fabcce0f84659f0 (diff)
downloadexternal_libsamsung-ipc-b722c61ccd5fea0e19ec4e3274a37cd99fa1b7d5.zip
external_libsamsung-ipc-b722c61ccd5fea0e19ec4e3274a37cd99fa1b7d5.tar.gz
external_libsamsung-ipc-b722c61ccd5fea0e19ec4e3274a37cd99fa1b7d5.tar.bz2
Fix several places in code for latest infrastructure changes
Signed-off-by: Simon Busch <morphis@gravedo.de>
Diffstat (limited to 'include/call.h')
-rw-r--r--include/call.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/call.h b/include/call.h
index 809f9ed..4784039 100644
--- a/include/call.h
+++ b/include/call.h
@@ -54,7 +54,7 @@
#define IPC_CALL_TERM_MO 0x01
#define IPC_CALL_TERM_MT 0x02
-struct ipc_response;
+struct ipc_message_info;
struct ipc_call_outgoing {
unsigned char type; // IPC_CALL_TYPE_...
@@ -91,9 +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);
+unsigned int ipc_call_list_response_get_num_entries(struct ipc_message_info *response);
+struct ipc_call_list_entry* ipc_call_list_response_get_entry(struct ipc_message_info *response, unsigned int num);
+char* ipc_call_list_response_get_entry_number(struct ipc_message_info *response, unsigned int num);
#endif