1
0
mirror of https://github.com/Tha14/toxic.git synced 2024-07-01 15:57:45 +02:00

add header guard and includes to windows.h

This commit is contained in:
Aaron Lipinski 2013-08-11 12:58:15 +12:00
parent 5d07842d96
commit 063523a042

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