1
0
mirror of https://github.com/Tha14/toxic.git synced 2024-07-01 17:07:46 +02:00
toxic/src/prompt.h

16 lines
530 B
C
Raw Normal View History

/*
* Toxic -- Tox Curses Client
*/
2013-08-13 00:50:43 +02:00
#ifndef PROMPT_H_UZYGWFFL
#define PROMPT_H_UZYGWFFL
ToxWindow new_prompt(void);
void prompt_init_statusbar(ToxWindow *self, Tox *m);
void prompt_update_nick(ToxWindow *prompt, uint8_t *nick, uint16_t len);
void prompt_update_statusmessage(ToxWindow *prompt, uint8_t *statusmsg, uint16_t len);
void prompt_update_status(ToxWindow *prompt, TOX_USERSTATUS status);
void prompt_update_connectionstatus(ToxWindow *prompt, bool is_connected);
2013-08-13 00:50:43 +02:00
#endif /* end of include guard: PROMPT_H_UZYGWFFL */