| |||
| Home > RealView Debugger Predefined Macros > Alphabetical predefined macro reference > prompt_yesno_cancel | |||
Displays a dialog containing question text, and Yes, No and Cancel buttons.
This macro is not available in the headless debugger.
int prompt_yesno_cancel (message)
char *message;
where:
messageThe text that you want to appear as a question on the dialog.
This macro displays a dialog containing question text and buttons (Yes, No and Cancel) for the user reply.
This example shows how to use prompt_yesno_cancel on
the command line:
ce prompt_yesno_cancel("Is everything OK?")Result is: 1 0x01
The following macros provide similar or related functionality:
prompt_file on prompt_file
prompt_list on prompt_list
prompt_text on prompt_text
prompt_yesno on prompt_yesno.