aboutsummaryrefslogtreecommitdiffstats
path: root/include/misc.h
diff options
context:
space:
mode:
authorSimon Busch <morphis@gravedo.de>2011-10-24 18:40:10 +0200
committerSimon Busch <morphis@gravedo.de>2011-10-24 19:09:56 +0200
commitef01149ee7c199cb21e0b9f20378141b3ec271ea (patch)
tree52729e9b42e9e16161c126e51091d052bdecf9ff /include/misc.h
parentffc43da883c6c4905f27bb02986a1422ef492d92 (diff)
downloadhardware_replicant_libsamsung-ipc-ef01149ee7c199cb21e0b9f20378141b3ec271ea.tar.gz
hardware_replicant_libsamsung-ipc-ef01149ee7c199cb21e0b9f20378141b3ec271ea.tar.bz2
hardware_replicant_libsamsung-ipc-ef01149ee7c199cb21e0b9f20378141b3ec271ea.zip
Updates for retrieve imsi and rsim data from response messages
Signed-off-by: Simon Busch <morphis@gravedo.de>
Diffstat (limited to 'include/misc.h')
-rw-r--r--include/misc.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/include/misc.h b/include/misc.h
index 4b5c51e..cc26c93 100644
--- a/include/misc.h
+++ b/include/misc.h
@@ -21,6 +21,8 @@
#ifndef __MISC_H__
#define __MISC_H__
+struct ipc_response;
+
#define IPC_MISC_ME_VERSION 0x0A01
#define IPC_MISC_ME_IMSI 0x0A02
#define IPC_MISC_ME_SN 0x0A03
@@ -41,7 +43,7 @@ struct ipc_misc_time_info {
char plmn[6];
} __attribute__((__packed__));
-char* ipc_parse_misc_me_imsi(uint8_t *data, unsigned int size);
+char* ipc_misc_me_imsi_response_get_imsi(struct ipc_response *response);
#endif