Moved cons_show_status() to console module

This commit is contained in:
James Booth
2013-04-21 01:13:35 +01:00
parent d7cc54db63
commit 688eea083b
4 changed files with 65 additions and 64 deletions

View File

@@ -23,6 +23,8 @@
#ifndef WINDOW_H
#define WINDOW_H
#include "contact.h"
#define PAD_SIZE 1000
typedef enum {
@@ -49,5 +51,6 @@ void window_free(ProfWin *window);
void window_show_time(ProfWin *window, char show_char);
void window_presence_colour_on(ProfWin *window, const char * const presence);
void window_presence_colour_off(ProfWin *window, const char * const presence);
void window_show_contact(ProfWin *window, PContact contact);
#endif