Reorder: stk response length structure

Follow the order of the specification
This commit is contained in:
Denis Kenzior 2010-03-12 07:51:58 -06:00
parent 12e411e6fc
commit a74bd04edf
1 changed files with 9 additions and 9 deletions

View File

@ -257,6 +257,15 @@ struct stk_item {
char *text;
};
/*
* According to 102.223 Section 8.11, the maximum length should never be set
* to 0.
*/
struct stk_response_length {
unsigned char min;
unsigned char max;
};
/* Defined in TS 102.223 Section 8.12 */
struct stk_result {
unsigned char general;
@ -280,15 +289,6 @@ struct stk_text_attribute {
unsigned char len;
};
/*
* According to 102.223 Section 8.11, the maximum length should never be set
* to 0.
*/
struct stk_response_length {
unsigned char min;
unsigned char max;
};
struct stk_command_display_text {
char *text;
struct stk_icon_identifier icon_id;