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> #include <netinet/in.h>
#endif #endif
#ifndef nullptr typedef unsigned int uint32;
#define nullptr 0 typedef int int32;
#endif
typedef unsigned long uint32;
typedef long int32;
typedef unsigned short uint16; typedef unsigned short uint16;
typedef short int16; typedef short int16;

View File

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