Quote:
Originally Posted by Zoro.Sro
athena\sro_devkit-devel1\source\libs\clientlib\src\xlib.h
needs a higher compiler like 2013 but devkit build in 2005
as I'm thinking its mixed source so use the original one
|
That's true but you can fix that error just by two ways
1- coping that file " stdint.h " from any other higher compiler and past it to your lib
or you can define what you need from that header something like that
Code:
#ifdef _MSC_VER
typedef __int32 int32_t;
typedef unsigned __int32 uint32_t;
typedef __int64 int64_t;
typedef unsigned __int64 uint64_t;
#else
#include <stdint.h>
#endif