summaryrefslogtreecommitdiffstats
path: root/src/stkutil.h
diff options
context:
space:
mode:
authorAndrzej Zaborowski <andrew.zaborowski@intel.com>2010-06-11 12:39:52 +0200
committerDenis Kenzior <denkenz@gmail.com>2010-06-15 12:09:00 -0500
commitdd9e095524077756a408cf0b5c2590f4065cca33 (patch)
treea7e8819de5933e5edc16272b0277923c0beaf975 /src/stkutil.h
parent2f6dc72ae2a7858448dfa55ccf6173d2f6e135fc (diff)
downloadofono-dd9e095524077756a408cf0b5c2590f4065cca33.tar.bz2
stkutil: Add the Timer Expiration envelope builder
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 ee206424..baeaedbd 100644
--- a/src/stkutil.h
+++ b/src/stkutil.h
@@ -1428,6 +1428,11 @@ struct stk_envelope_event_download {
};
};
+struct stk_envelope_timer_expiration {
+ unsigned char id;
+ struct stk_timer_value value;
+};
+
struct stk_envelope {
enum stk_envelope_type type;
enum stk_device_identity_type src;
@@ -1439,6 +1444,7 @@ struct stk_envelope {
struct stk_envelope_call_control call_control;
struct stk_envelope_sms_mo_control sms_mo_control;
struct stk_envelope_event_download event_download;
+ struct stk_envelope_timer_expiration timer_expiration;
};
};