diff options
Diffstat (limited to 'src/stkutil.h')
-rw-r--r-- | src/stkutil.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/stkutil.h b/src/stkutil.h index e22292b9..d017dc9e 100644 --- a/src/stkutil.h +++ b/src/stkutil.h @@ -838,6 +838,18 @@ struct stk_command_setup_menu { struct stk_item_text_attribute_list item_text_attr_list; }; +struct stk_command_select_item { + char *alpha_id; + GSList *items; + struct stk_items_next_action_indicator next_act; + unsigned char item_id; + struct stk_icon_id icon_id; + struct stk_item_icon_id_list item_icon_id_list; + struct stk_text_attribute text_attr; + struct stk_item_text_attribute_list item_text_attr_list; + struct stk_frame_id frame_id; +}; + struct stk_command_send_sms { char *alpha_id; struct stk_address address; @@ -860,6 +872,7 @@ struct stk_command { struct stk_command_get_inkey get_inkey; struct stk_command_get_input get_input; struct stk_command_play_tone play_tone; + struct stk_command_select_item select_item; struct stk_command_send_sms send_sms; struct stk_command_poll_interval poll_interval; struct stk_command_setup_menu setup_menu; |