summaryrefslogtreecommitdiffstats
path: root/src/stkutil.h
diff options
context:
space:
mode:
authorYang Gu <yang.gu@intel.com>2010-05-19 18:24:45 +0800
committerDenis Kenzior <denkenz@gmail.com>2010-05-25 17:36:52 -0500
commit5129bb299840438e293d36223aa3ae0c79850d93 (patch)
tree764d8e42635e9cd3678308709f27fcb7dac6c427 /src/stkutil.h
parentb4e081f0e1a4554e19af01baf30459b458186035 (diff)
downloadofono-5129bb299840438e293d36223aa3ae0c79850d93.tar.bz2
stk: Add parser for language notification commands
Diffstat (limited to 'src/stkutil.h')
-rw-r--r--src/stkutil.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/stkutil.h b/src/stkutil.h
index 4828551f..33a13256 100644
--- a/src/stkutil.h
+++ b/src/stkutil.h
@@ -988,6 +988,10 @@ struct stk_command_send_dtmf {
struct stk_frame_id frame_id;
};
+struct stk_command_language_notification {
+ char language[3];
+};
+
struct stk_command {
unsigned char number;
unsigned char type;
@@ -1012,6 +1016,7 @@ struct stk_command {
struct stk_command_setup_idle_mode_text setup_idle_mode_text;
struct stk_command_run_at_command run_at_command;
struct stk_command_send_dtmf send_dtmf;
+ struct stk_command_language_notification language_notification;
};
void (*destructor)(struct stk_command *command);