diff options
author | Joerie de Gram <j.de.gram@gmail.com> | 2011-10-29 14:21:17 +0200 |
---|---|---|
committer | Joerie de Gram <j.de.gram@gmail.com> | 2011-11-21 20:30:02 +0100 |
commit | 7d34a9c533852f57eea7da6f9be0fd26f5d3ac12 (patch) | |
tree | fad1a715d5402defd8c36d95eee8efddcd393247 /include/device | |
parent | 2bbccf3d9ee564f0ec0cef8f937c0a1d30775ad2 (diff) | |
download | external_libsamsung-ipc-7d34a9c533852f57eea7da6f9be0fd26f5d3ac12.zip external_libsamsung-ipc-7d34a9c533852f57eea7da6f9be0fd26f5d3ac12.tar.gz external_libsamsung-ipc-7d34a9c533852f57eea7da6f9be0fd26f5d3ac12.tar.bz2 |
misc: add misc_me_sn struct
Diffstat (limited to 'include/device')
-rw-r--r-- | include/device/crespo/misc.h | 6 | ||||
-rw-r--r-- | include/device/h1/misc.h | 5 |
2 files changed, 11 insertions, 0 deletions
diff --git a/include/device/crespo/misc.h b/include/device/crespo/misc.h index 6cf13b8..9feacf2 100644 --- a/include/device/crespo/misc.h +++ b/include/device/crespo/misc.h @@ -29,6 +29,12 @@ struct ipc_misc_me_version { char misc[32]; } __attribute__((__packed__)); +struct ipc_misc_me_sn { + unsigned char unk; + unsigned char length; + char imei[32]; +} __attribute__((__packed__)); + #endif // vim:ts=4:sw=4:expandtab diff --git a/include/device/h1/misc.h b/include/device/h1/misc.h index c5f40ac..13c4509 100644 --- a/include/device/h1/misc.h +++ b/include/device/h1/misc.h @@ -28,6 +28,11 @@ struct ipc_misc_me_version { char misc[32]; } __attribute__((__packed__)); +struct ipc_misc_me_sn { + unsigned char length; + char imei[32]; +} __attribute__((__packed__)); + #endif // vim:ts=4:sw=4:expandtab |