Added cons_show_padded

This commit is contained in:
James Booth
2015-07-29 23:48:28 +01:00
parent 79f618367d
commit 8ec931eb84
7 changed files with 64 additions and 45 deletions

View File

@@ -240,6 +240,7 @@ void ui_inp_history_append(char *inp);
// console window actions
void cons_show(const char * const msg, ...);
void cons_show_padded(int pad, const char * const msg, ...);
void cons_about(void);
void cons_help(void);
void cons_show_help(Command *command);
@@ -359,7 +360,7 @@ void win_show_occupant(ProfWin *window, Occupant *occupant);
void win_show_occupant_info(ProfWin *window, const char * const room, Occupant *occupant);
void win_show_contact(ProfWin *window, PContact contact);
void win_show_info(ProfWin *window, PContact contact);
void win_println(ProfWin *window, const char * const message);
void win_println(ProfWin *window, int pad, const char * const message);
// desktop notifier actions
void notifier_initialise(void);