aboutsummaryrefslogtreecommitdiffstats
path: root/include/disp.h
diff options
context:
space:
mode:
authorSimon Busch <morphis@gravedo.de>2011-10-17 07:44:47 +0200
committerSimon Busch <morphis@gravedo.de>2011-10-17 08:05:40 +0200
commitc54f0cc786467f3cc4d41320e0ba409e4624dc21 (patch)
treeb0a307b9d3e1debe204566c3d3afe52f18534329 /include/disp.h
parent05843cc7a19f055887f052f00db75f6358d61cc8 (diff)
downloadexternal_libsamsung-ipc-c54f0cc786467f3cc4d41320e0ba409e4624dc21.zip
external_libsamsung-ipc-c54f0cc786467f3cc4d41320e0ba409e4624dc21.tar.gz
external_libsamsung-ipc-c54f0cc786467f3cc4d41320e0ba409e4624dc21.tar.bz2
Add a lot more enums and structs to the vala api description
Signed-off-by: Simon Busch <morphis@gravedo.de>
Diffstat (limited to 'include/disp.h')
-rw-r--r--include/disp.h11
1 files changed, 8 insertions, 3 deletions
diff --git a/include/disp.h b/include/disp.h
index aa6c6cf..1deb599 100644
--- a/include/disp.h
+++ b/include/disp.h
@@ -21,11 +21,16 @@
#ifndef __DISP_H__
#define __DISP_H__
-#define IPC_DISP_ICON_INFO 0x0701
-#define IPC_DISP_HOMEZONE_INFO 0x0702
+#define IPC_DISP_ICON_INFO 0x0701
+#define IPC_DISP_HOMEZONE_INFO 0x0702
+#define IPC_DISP_RSSI_INFO 0x0706
struct ipc_disp_icon_info {
- unsigned char unk, rssi, battery, act, reg;
+ unsigned char unk, rssi, battery, act, reg;
+} __attribute__((__packed__));
+
+struct ipc_disp_rssi_info {
+ unsigned char rssi;
} __attribute__((__packed__));
#endif