summaryrefslogtreecommitdiffstats
path: root/src/stkutil.h
diff options
context:
space:
mode:
authorYang Gu <yang.gu@intel.com>2010-06-17 18:35:07 +0800
committerDenis Kenzior <denkenz@gmail.com>2010-06-18 13:15:31 -0500
commit31d29608e0972a66b576e66ff34f7dc1f2dd356a (patch)
tree082263faacaebe7db8f98dee7e93dd027bdf2fe2 /src/stkutil.h
parenta769091803d6e5afd3bcd2daf06cb7b4b8fcd0c3 (diff)
downloadofono-31d29608e0972a66b576e66ff34f7dc1f2dd356a.tar.bz2
stk: Add parser for send ussd commands
Diffstat (limited to 'src/stkutil.h')
-rw-r--r--src/stkutil.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/stkutil.h b/src/stkutil.h
index 471e10f2..6fb49e07 100644
--- a/src/stkutil.h
+++ b/src/stkutil.h
@@ -1117,6 +1117,14 @@ struct stk_command_send_ss {
struct stk_frame_id frame_id;
};
+struct stk_command_send_ussd {
+ char *alpha_id;
+ struct stk_ussd_string ussd_string;
+ struct stk_icon_id icon_id;
+ struct stk_text_attribute text_attr;
+ struct stk_frame_id frame_id;
+};
+
struct stk_command_setup_call {
char *alpha_id_usr_cfm;
struct stk_address addr;
@@ -1295,6 +1303,7 @@ struct stk_command {
struct stk_command_select_item select_item;
struct stk_command_send_sms send_sms;
struct stk_command_send_ss send_ss;
+ struct stk_command_send_ussd send_ussd;
struct stk_command_setup_call setup_call;
struct stk_command_setup_event_list setup_event_list;
struct stk_command_perform_card_apdu perform_card_apdu;