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 0e650e16..65a1c741 100644 --- a/src/stkutil.h +++ b/src/stkutil.h @@ -972,6 +972,14 @@ struct stk_command_setup_idle_mode_text { struct stk_frame_id frame_id; }; +struct stk_command_run_at_command { + char *alpha_id; + char *at_command; + 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; @@ -994,6 +1002,7 @@ struct stk_command { struct stk_command_perform_card_apdu perform_card_apdu; 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; }; void (*destructor)(struct stk_command *command); |