1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-06-23 21:45:30 +00:00
profanity/windows.h

21 lines
383 B
C
Raw Normal View History

2012-02-05 23:08:15 +00:00
#ifndef WINDOWS_H
#define WINDOWS_h
2012-02-07 00:08:59 +00:00
#include <strophe/strophe.h>
#include <ncurses.h>
2012-02-05 23:08:15 +00:00
// windows
WINDOW *title_bar;
WINDOW *cmd_bar;
WINDOW *cmd_win;
WINDOW *main_win;
2012-02-07 00:08:59 +00:00
void gui_init(void);
void gui_close(void);
2012-02-06 22:29:05 +00:00
void show_incomming_msg(char *from, char *message);
2012-02-07 00:08:59 +00:00
void cmd_get_command_str(char *cmd);
void cmd_get_password(char *passwd);
void bar_print_message(char *msg);
2012-02-05 23:08:15 +00:00
#endif