Skip to content

Commit

Permalink
Added ui_msgbox() function.
Browse files Browse the repository at this point in the history
  • Loading branch information
icculus committed May 30, 2004
1 parent 0ba54d9 commit 1f5a2e8
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
1 change: 1 addition & 0 deletions ui.h
Expand Up @@ -13,6 +13,7 @@ void ui_pump(void);
void ui_add_to_log(const char *str, int debugging);
void ui_fatal(const char *str);
void ui_success(const char *str);
void ui_msgbox(const char *str);
void ui_total_progress(int percent);
void ui_status(const char *str);
void ui_title(const char *str);
Expand Down
6 changes: 6 additions & 0 deletions ui_carbon.c
Expand Up @@ -248,6 +248,12 @@ void ui_success(const char *str)
} /* ui_success */


void ui_msgbox(const char *str)
{
do_msgbox(str, kAlertNoteAlert, NULL, NULL);
} /* ui_msgbox */


void ui_total_progress(int percent)
{
static int lastpercent = -1;
Expand Down

0 comments on commit 1f5a2e8

Please sign in to comment.