mirror of
https://github.com/irungentoo/toxcore.git
synced 2024-03-22 13:30:51 +08:00
04fdd9eadb
Still a work-in-progress.
11 lines
190 B
C
11 lines
190 B
C
typedef struct ToxWindow_ ToxWindow;
|
|
|
|
struct ToxWindow_ {
|
|
void(*onKey)(ToxWindow*, int);
|
|
void(*onDraw)(ToxWindow*);
|
|
void(*onInit)(ToxWindow*);
|
|
char title[256];
|
|
|
|
WINDOW* window;
|
|
};
|