From c54f0cc786467f3cc4d41320e0ba409e4624dc21 Mon Sep 17 00:00:00 2001 From: Simon Busch Date: Mon, 17 Oct 2011 07:44:47 +0200 Subject: Add a lot more enums and structs to the vala api description Signed-off-by: Simon Busch --- include/disp.h | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) (limited to 'include/disp.h') 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 -- cgit v1.1