1
0
mirror of https://github.com/Tha14/toxic.git synced 2025-12-07 14:46:35 +01:00

Initial commit for Toxic, a new curses interface for Tox.

Still a work-in-progress.
This commit is contained in:
plutooo
2013-07-29 16:32:39 -07:00
commit 1974fa23d2
3 changed files with 531 additions and 0 deletions

10
windows.h Normal file
View File

@@ -0,0 +1,10 @@
typedef struct ToxWindow_ ToxWindow;
struct ToxWindow_ {
void(*onKey)(ToxWindow*, int);
void(*onDraw)(ToxWindow*);
void(*onInit)(ToxWindow*);
char title[256];
WINDOW* window;
};