diff options
author | Denis Kenzior <denkenz@gmail.com> | 2010-03-15 21:01:04 -0500 |
---|---|---|
committer | Denis Kenzior <denkenz@gmail.com> | 2010-03-15 21:02:06 -0500 |
commit | e64596f1dc21aa6f25a19c95b83dff8b3a832ac4 (patch) | |
tree | b6fffe840d0b1805872935d36202e2c8b027967b /src/stkutil.h | |
parent | a16f270eb1795cf1d96dc8b9f0d879861214eee8 (diff) | |
download | ofono-e64596f1dc21aa6f25a19c95b83dff8b3a832ac4.tar.bz2 |
Add parser for STK send sms proactive commands
Diffstat (limited to 'src/stkutil.h')
-rw-r--r-- | src/stkutil.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/stkutil.h b/src/stkutil.h index 9c09b96f..57ba928e 100644 --- a/src/stkutil.h +++ b/src/stkutil.h @@ -342,6 +342,15 @@ struct stk_command_get_input { unsigned char frame_id; /* Values 0x10 to 0xFF reserved */ }; +struct stk_command_send_sms { + char *alpha_id; + struct stk_address address; + struct sms gsm_sms; + struct stk_icon_identifier icon_id; + struct stk_text_attribute text_attribute; + unsigned char frame_id; /* Values 0x10 to 0xFF reserved */ +}; + struct stk_command { unsigned char number; unsigned char type; @@ -353,6 +362,7 @@ struct stk_command { struct stk_command_display_text display_text; struct stk_command_display_text get_inkey; struct stk_command_get_input get_input; + struct stk_command_send_sms send_sms; }; void (*destructor)(struct stk_command *command); |