diff options
Diffstat (limited to 'testing/toxic/windows.h')
-rw-r--r-- | testing/toxic/windows.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/testing/toxic/windows.h b/testing/toxic/windows.h index 648243d0..4eb55a99 100644 --- a/testing/toxic/windows.h +++ b/testing/toxic/windows.h | |||
@@ -1,8 +1,13 @@ | |||
1 | /* | 1 | /* |
2 | * Toxic -- Tox Curses Client | 2 | * Toxic -- Tox Curses Client |
3 | */ | 3 | */ |
4 | #ifndef _windows_h | ||
5 | #define _windows_h | ||
4 | 6 | ||
7 | #include <curses.h> | ||
8 | #include <stdint.h> | ||
5 | #include <stdbool.h> | 9 | #include <stdbool.h> |
10 | #include "../../core/Messenger.h" | ||
6 | #define TOXWINDOWS_MAX_NUM 32 | 11 | #define TOXWINDOWS_MAX_NUM 32 |
7 | #define MAX_FRIENDS_NUM 100 | 12 | #define MAX_FRIENDS_NUM 100 |
8 | #define MAX_STR_SIZE 256 | 13 | #define MAX_STR_SIZE 256 |
@@ -32,3 +37,6 @@ struct ToxWindow_ { | |||
32 | 37 | ||
33 | WINDOW* window; | 38 | WINDOW* window; |
34 | }; | 39 | }; |
40 | |||
41 | #endif | ||
42 | |||