Add types.h to a bunch of files

This commit is contained in:
Akkadius 2015-01-19 04:02:45 -06:00
parent 89b16512d5
commit 045125d328
9 changed files with 15 additions and 6 deletions

View File

@ -1,6 +1,8 @@
#ifndef CLIENTVERSIONS_H
#define CLIENTVERSIONS_H
#include "types.h"
static const uint32 BIT_Client62 = 1;
static const uint32 BIT_Titanium = 2;
static const uint32 BIT_SoF = 4;

View File

@ -19,6 +19,7 @@
#define __CONDITION_H
#include "debug.h"
#include "mutex.h"
#ifndef WIN32
#include <pthread.h>
#endif

View File

@ -38,9 +38,9 @@
#include <winsock2.h>
#endif
#include "../common/mutex.h"
#include <stdio.h>
#include <stdarg.h>
#endif

View File

@ -19,6 +19,7 @@
#define EQ_CONSTANTS_H
#include "skills.h"
#include "types.h"
/*
** Item attributes

View File

@ -15,7 +15,8 @@
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include "../common/debug.h"
#include "types.h"
// Quagmire - i was really surprised, but i couldnt find the equivilent standard library function
signed char sign(signed int tmp) {

View File

@ -18,6 +18,8 @@
#ifndef MOREMATH_H
#define MOREMATH_H
#include "types.h"
signed char sign(signed int tmp);
signed char sign(double tmp);
uint32 pow32(uint32 base, uint32 exponet);

View File

@ -20,6 +20,7 @@
#include <vector>
#include "debug.h"
#include "types.h"
#include "proc_launcher.h"
#ifdef _WINDOWS
#include <windows.h>

View File

@ -23,8 +23,9 @@
#ifndef SEPERATOR_H
#define SEPERATOR_H
#include <string.h>
#include "types.h"
#include <stdlib.h>
#include <string.h>
class Seperator
{

View File

@ -2,7 +2,7 @@
#define TCPSERVER_H_
#include "types.h"
#include "mutex.h"
#include <vector>
#include <queue>