add header guard and includes to windows.h

This commit is contained in:
Aaron Lipinski 2013-08-11 12:58:15 +12:00
parent 4e21ac0d57
commit 3f37c5580d

View File

@ -1,8 +1,13 @@
/*
* Toxic -- Tox Curses Client
*/
#ifndef _windows_h
#define _windows_h
#include <curses.h>
#include <stdint.h>
#include <stdbool.h>
#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