mirror of
https://github.com/Tha14/toxic.git
synced 2025-03-13 09:12:46 +01:00
20 lines
645 B
C
20 lines
645 B
C
/*
|
|
* Toxic -- Tox Curses Client
|
|
*/
|
|
|
|
#ifndef PROMPT_H_UZYGWFFL
|
|
#define PROMPT_H_UZYGWFFL
|
|
|
|
#include "toxic_windows.h"
|
|
|
|
ToxWindow new_prompt(void);
|
|
int add_req(uint8_t *public_key);
|
|
unsigned char *hex_string_to_bin(char hex_string[]);
|
|
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);
|
|
|
|
#endif /* end of include guard: PROMPT_H_UZYGWFFL */
|