From 3f37c5580dc6cfd0920095f6d3c99aba035724ee Mon Sep 17 00:00:00 2001 From: Aaron Lipinski Date: Sun, 11 Aug 2013 12:58:15 +1200 Subject: [PATCH] add header guard and includes to windows.h --- testing/toxic/windows.h | 8 ++++++++ 1 file changed, 8 insertions(+) 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 @@ /* * Toxic -- Tox Curses Client */ +#ifndef _windows_h +#define _windows_h +#include +#include #include +#include "../../core/Messenger.h" #define TOXWINDOWS_MAX_NUM 32 #define MAX_FRIENDS_NUM 100 #define MAX_STR_SIZE 256 @@ -32,3 +37,6 @@ struct ToxWindow_ { WINDOW* window; }; + +#endif +