summaryrefslogtreecommitdiffstats
path: root/src/stkutil.h
diff options
context:
space:
mode:
authorYang Gu <yang.gu@intel.com>2010-05-19 18:24:39 +0800
committerDenis Kenzior <denkenz@gmail.com>2010-05-25 17:13:43 -0500
commit525bf96a1bf6ae9d8a0e518b970320805adb09c1 (patch)
treecd85af06a90790f75158c8b35dd491942bdf3654 /src/stkutil.h
parentaf2004ece1fbda00121ac9ad678dd1714a104b91 (diff)
downloadofono-525bf96a1bf6ae9d8a0e518b970320805adb09c1.tar.bz2
stk: Add parser for setup idle mode text commands
Diffstat (limited to 'src/stkutil.h')
-rw-r--r--src/stkutil.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/stkutil.h b/src/stkutil.h
index 1810b8ed..0e650e16 100644
--- a/src/stkutil.h
+++ b/src/stkutil.h
@@ -965,6 +965,13 @@ struct stk_command_timer_mgmt {
struct stk_timer_value timer_value;
};
+struct stk_command_setup_idle_mode_text {
+ char *text;
+ struct stk_icon_id icon_id;
+ struct stk_text_attribute text_attr;
+ struct stk_frame_id frame_id;
+};
+
struct stk_command {
unsigned char number;
unsigned char type;
@@ -986,6 +993,7 @@ struct stk_command {
struct stk_command_setup_event_list setup_event_list;
struct stk_command_perform_card_apdu perform_card_apdu;
struct stk_command_timer_mgmt timer_mgmt;
+ struct stk_command_setup_idle_mode_text setup_idle_mode_text;
};
void (*destructor)(struct stk_command *command);