diff options
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 |