summaryrefslogtreecommitdiffstats
path: root/src/stkutil.h
diff options
context:
space:
mode:
authorYang Gu <yang.gu@intel.com>2010-05-13 18:48:43 +0800
committerDenis Kenzior <denkenz@gmail.com>2010-05-13 15:33:26 -0500
commita1e3cb43ecc7ccea184ddcddb2df21435ed074bf (patch)
tree178ccf07d828a73f073a0abe06c8046982df5585 /src/stkutil.h
parent3fb819790a04575e270a05cb910f21540c0740cb (diff)
downloadofono-a1e3cb43ecc7ccea184ddcddb2df21435ed074bf.tar.bz2
stkutil: Add timer management command parser
Diffstat (limited to 'src/stkutil.h')
-rw-r--r--src/stkutil.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/stkutil.h b/src/stkutil.h
index 33d3ba8e..d18ada95 100644
--- a/src/stkutil.h
+++ b/src/stkutil.h
@@ -960,6 +960,11 @@ struct stk_command_perform_card_apdu {
struct stk_c_apdu c_apdu;
};
+struct stk_command_timer_mgmt {
+ unsigned char timer_id;
+ struct stk_timer_value timer_value;
+};
+
struct stk_command {
unsigned char number;
unsigned char type;
@@ -980,6 +985,7 @@ struct stk_command {
struct stk_command_refresh refresh;
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;
};
void (*destructor)(struct stk_command *command);