diff options
Diffstat (limited to 'testing/toxic/windows.h')
-rw-r--r-- | testing/toxic/windows.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/testing/toxic/windows.h b/testing/toxic/windows.h index 86917dbe..227040b9 100644 --- a/testing/toxic/windows.h +++ b/testing/toxic/windows.h | |||
@@ -4,9 +4,12 @@ | |||
4 | #ifndef _windows_h | 4 | #ifndef _windows_h |
5 | #define _windows_h | 5 | #define _windows_h |
6 | 6 | ||
7 | #define _XOPEN_SOURCE_EXTENDED | ||
7 | #include <curses.h> | 8 | #include <curses.h> |
8 | #include <stdint.h> | 9 | #include <stdint.h> |
9 | #include <stdbool.h> | 10 | #include <stdbool.h> |
11 | #include <wctype.h> | ||
12 | #include <wchar.h> | ||
10 | #include "../../core/Messenger.h" | 13 | #include "../../core/Messenger.h" |
11 | #define MAX_WINDOWS_NUM 32 | 14 | #define MAX_WINDOWS_NUM 32 |
12 | #define MAX_FRIENDS_NUM 100 | 15 | #define MAX_FRIENDS_NUM 100 |
@@ -23,7 +26,7 @@ | |||
23 | typedef struct ToxWindow_ ToxWindow; | 26 | typedef struct ToxWindow_ ToxWindow; |
24 | 27 | ||
25 | struct ToxWindow_ { | 28 | struct ToxWindow_ { |
26 | void(*onKey)(ToxWindow *, Messenger *, int); | 29 | void(*onKey)(ToxWindow *, Messenger *, wint_t); |
27 | void(*onDraw)(ToxWindow *, Messenger *); | 30 | void(*onDraw)(ToxWindow *, Messenger *); |
28 | void(*onInit)(ToxWindow *, Messenger *); | 31 | void(*onInit)(ToxWindow *, Messenger *); |
29 | void(*onFriendRequest)(ToxWindow *, uint8_t *, uint8_t *, uint16_t); | 32 | void(*onFriendRequest)(ToxWindow *, uint8_t *, uint8_t *, uint16_t); |