summaryrefslogtreecommitdiffstats
path: root/src/stkutil.h
diff options
context:
space:
mode:
authorYang Gu <yang.gu@intel.com>2010-05-13 18:48:19 +0800
committerDenis Kenzior <denkenz@gmail.com>2010-05-13 11:07:07 -0500
commitd45219e049eb60e095abf262142d98f90368bf8b (patch)
treed90452a3d92f36125c178a51307de62eb8726408 /src/stkutil.h
parent2cc037e136f33758d3e18f1918f429196b1e76e0 (diff)
downloadofono-d45219e049eb60e095abf262142d98f90368bf8b.tar.bz2
stkutil: Add setup menu proactive command parse
Diffstat (limited to 'src/stkutil.h')
-rw-r--r--src/stkutil.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/stkutil.h b/src/stkutil.h
index 02451b44..e22292b9 100644
--- a/src/stkutil.h
+++ b/src/stkutil.h
@@ -828,6 +828,16 @@ struct stk_command_poll_interval {
struct stk_duration duration;
};
+struct stk_command_setup_menu {
+ char *alpha_id;
+ GSList *items;
+ struct stk_items_next_action_indicator next_act;
+ struct stk_icon_id icon_id;
+ struct stk_item_icon_id_list item_icon_id_list;
+ struct stk_text_attribute text_attr;
+ struct stk_item_text_attribute_list item_text_attr_list;
+};
+
struct stk_command_send_sms {
char *alpha_id;
struct stk_address address;
@@ -852,6 +862,7 @@ struct stk_command {
struct stk_command_play_tone play_tone;
struct stk_command_send_sms send_sms;
struct stk_command_poll_interval poll_interval;
+ struct stk_command_setup_menu setup_menu;
};
void (*destructor)(struct stk_command *command);