summaryrefslogtreecommitdiff
path: root/testing
diff options
context:
space:
mode:
authorAaron Lipinski <kris.lipinski@gmail.com>2013-08-11 12:58:15 +1200
committerAaron Lipinski <kris.lipinski@gmail.com>2013-08-15 00:36:30 +1200
commit3f37c5580dc6cfd0920095f6d3c99aba035724ee (patch)
treee727f1f8db5e9f0ab8f8d2a5a5fdd7d333cbe26c /testing
parent4e21ac0d57df8d20dcdc4dd318d1e63166017e30 (diff)
add header guard and includes to windows.h
Diffstat (limited to 'testing')
-rw-r--r--testing/toxic/windows.h8
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