Azone fix for new compilers and possible fix for x64

This commit is contained in:
KimLS 2013-05-15 14:37:30 -07:00
parent 9e13a2271c
commit 312100e1c6
2 changed files with 4 additions and 8 deletions

View File

@ -9,12 +9,8 @@
#include <netinet/in.h>
#endif
#ifndef nullptr
#define nullptr 0
#endif
typedef unsigned long uint32;
typedef long int32;
typedef unsigned int uint32;
typedef int int32;
typedef unsigned short uint16;
typedef short int16;

View File

@ -1,8 +1,8 @@
#ifndef __EQCLIENT_TYPES_H_
#define __EQCLIENT_TYPES_H_
typedef unsigned long uint32;
typedef long int32;
typedef unsigned int uint32;
typedef int int32;
typedef unsigned short uint16;
typedef short int16;