summaryrefslogtreecommitdiffstats
path: root/src/stkutil.h
diff options
context:
space:
mode:
authorYang Gu <yang.gu@intel.com>2010-05-13 18:48:27 +0800
committerDenis Kenzior <denkenz@gmail.com>2010-05-13 13:47:22 -0500
commit783bb70599e29f075321258fef3890c940924980 (patch)
tree6c45bf31b753bab2b139092d2bb2a53ee1507fae /src/stkutil.h
parent847539b39daa491cdf7e76d5e045ec4b5b8ad5e3 (diff)
downloadofono-783bb70599e29f075321258fef3890c940924980.tar.bz2
stkutil: Add setup call proactive command parser
Diffstat (limited to 'src/stkutil.h')
-rw-r--r--src/stkutil.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/stkutil.h b/src/stkutil.h
index 0c9fd500..d0d2486c 100644
--- a/src/stkutil.h
+++ b/src/stkutil.h
@@ -860,6 +860,20 @@ struct stk_command_send_sms {
struct stk_frame_id frame_id;
};
+struct stk_command_setup_call {
+ char *alpha_id_usr_cfm;
+ struct stk_address addr;
+ struct stk_ccp ccp;
+ struct stk_subaddress subaddr;
+ struct stk_duration duration;
+ struct stk_icon_id icon_id_usr_cfm;
+ char *alpha_id_call_setup;
+ struct stk_icon_id icon_id_call_setup;
+ struct stk_text_attribute text_attr_usr_cfm;
+ struct stk_text_attribute text_attr_call_setup;
+ struct stk_frame_id frame_id;
+};
+
struct stk_command {
unsigned char number;
unsigned char type;
@@ -876,6 +890,7 @@ struct stk_command {
struct stk_command_setup_menu setup_menu;
struct stk_command_select_item select_item;
struct stk_command_send_sms send_sms;
+ struct stk_command_setup_call setup_call;
};
void (*destructor)(struct stk_command *command);