1
0
mirror of https://github.com/Tha14/toxic.git synced 2025-12-06 22:56:35 +01:00

toxic: Made everything 1000x more userfriendly.

This commit is contained in:
plutooo
2013-07-31 11:20:16 -07:00
parent 7290527cdc
commit 9559e37cfb
5 changed files with 79 additions and 24 deletions

View File

@@ -1,3 +1,9 @@
/*
* Toxic -- Tox Curses Client
*/
#include <stdbool.h>
typedef struct ToxWindow_ ToxWindow;
struct ToxWindow_ {
@@ -11,6 +17,7 @@ struct ToxWindow_ {
char title[256];
void* x;
bool blink;
WINDOW* window;
};