1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-09-22 19:45:54 -04:00
profanity/windows.h

19 lines
455 B
C
Raw Normal View History

2012-02-05 18:08:15 -05:00
#ifndef WINDOWS_H
#define WINDOWS_h
2012-02-06 19:08:59 -05:00
#include <strophe/strophe.h>
#include <ncurses.h>
void gui_init(void);
void gui_close(void);
2012-02-06 17:29:05 -05:00
void show_incomming_msg(char *from, char *message);
2012-02-06 19:37:42 -05:00
void show_outgoing_msg(char *from, char *message);
2012-02-06 19:08:59 -05:00
void cmd_get_command_str(char *cmd);
2012-02-06 19:37:42 -05:00
void cmd_poll_char(int *ch, char command[], int *size);
void cmd_clear(void);
void cmd_non_block(void);
2012-02-06 19:08:59 -05:00
void cmd_get_password(char *passwd);
void bar_print_message(char *msg);
2012-02-05 18:08:15 -05:00
#endif