diff options
Diffstat (limited to 'src/stkutil.h')
-rw-r--r-- | src/stkutil.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/stkutil.h b/src/stkutil.h index 65ccfd34..d4b5b237 100644 --- a/src/stkutil.h +++ b/src/stkutil.h @@ -1182,6 +1182,11 @@ struct stk_envelope_cbs_pp_download { struct cbs page; }; +struct stk_envelope_menu_selection { + unsigned char item_id; + ofono_bool_t help_request; +}; + struct stk_envelope { enum stk_envelope_type type; enum stk_device_identity_type src; @@ -1189,6 +1194,7 @@ struct stk_envelope { union { struct stk_envelope_sms_pp_download sms_pp_download; struct stk_envelope_cbs_pp_download cbs_pp_download; + struct stk_envelope_menu_selection menu_selection; }; }; |