diff options
Diffstat (limited to 'src/stkutil.h')
-rw-r--r-- | src/stkutil.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/stkutil.h b/src/stkutil.h index 65a1c741..4828551f 100644 --- a/src/stkutil.h +++ b/src/stkutil.h @@ -980,6 +980,14 @@ struct stk_command_run_at_command { struct stk_frame_id frame_id; }; +struct stk_command_send_dtmf { + char *alpha_id; + char *dtmf; + struct stk_icon_id icon_id; + struct stk_text_attribute text_attr; + struct stk_frame_id frame_id; +}; + struct stk_command { unsigned char number; unsigned char type; @@ -1003,6 +1011,7 @@ struct stk_command { struct stk_command_timer_mgmt timer_mgmt; struct stk_command_setup_idle_mode_text setup_idle_mode_text; struct stk_command_run_at_command run_at_command; + struct stk_command_send_dtmf send_dtmf; }; void (*destructor)(struct stk_command *command); |