diff options
author | PaulK <contact@paulk.fr> | 2012-02-24 17:21:15 +0100 |
---|---|---|
committer | PaulK <contact@paulk.fr> | 2012-02-24 17:21:15 +0100 |
commit | e64584f780edddc0816ebafb6ebb13cdd5fa95fb (patch) | |
tree | 1ce76edd7bc671496ccefe0588a22f0e37f6b352 /include/sec.h | |
parent | b441d89e718355f3eccf7470f33c5c75e1e2b217 (diff) | |
download | external_libsamsung-ipc-e64584f780edddc0816ebafb6ebb13cdd5fa95fb.zip external_libsamsung-ipc-e64584f780edddc0816ebafb6ebb13cdd5fa95fb.tar.gz external_libsamsung-ipc-e64584f780edddc0816ebafb6ebb13cdd5fa95fb.tar.bz2 |
Fixed ipc_sec_phone_lock stuctures
Diffstat (limited to 'include/sec.h')
-rw-r--r-- | include/sec.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/include/sec.h b/include/sec.h index 2fc48a0..5c7b90b 100644 --- a/include/sec.h +++ b/include/sec.h @@ -78,12 +78,16 @@ struct ipc_sec_pin_status_set { unsigned char pin2[8]; } __attribute__((__packed__)); -struct ipc_sec_phone_lock_request { +struct ipc_sec_phone_lock_set { unsigned char type; // IPC_SEC_PIN_SIM_LOCK_... unsigned char lock; unsigned char length; unsigned char password[39]; -}; +} __attribute__((__packed__)); + +struct ipc_sec_phone_lock_get { + unsigned char type; // IPC_SEC_PIN_SIM_LOCK_... +} __attribute__((__packed__)); struct ipc_sec_phone_lock_response { unsigned char type; |