From: Denis Kenzior Date: Sat, 27 Feb 2010 16:19:51 +0000 (-0600) Subject: stk: Add text attribute structure X-Git-Tag: 0.19~22 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=6497d29719c55cec2ffc6b36e19c51baaac4c391;p=platform%2Fupstream%2Fofono.git stk: Add text attribute structure --- diff --git a/src/stkutil.h b/src/stkutil.h index 01864de..e9c4e46 100644 --- a/src/stkutil.h +++ b/src/stkutil.h @@ -209,11 +209,23 @@ struct stk_duration { unsigned char interval; }; +/* + * According to 102.223 Section 8.72 the length of text attribute CTLV is 1 + * byte. This means that the maximum size is 127 according to the rules + * of CTLVs. Empty attribute options will have len of 0. + */ +struct stk_text_attribute { + unsigned char attributes[127]; + unsigned char len; +}; + struct stk_command_display_text { char *text; struct stk_icon_identifier icon_id; ofono_bool_t immediate_response; struct stk_duration duration; + struct stk_text_attribute text_attribute; + unsigned char frame_id; /* Values 0x10 to 0xFF reserved */ }; struct stk_command {