03-05-2015, 04:22 PM
Hello,
thanks all for answer.
After some google search, i found a part of code :
#ifdef WIN32
#include <time.h>
#include <sys/timeb.h>
int gettimeofday (struct timeval *tp, void *tz)
{
struct _timeb timebuffer;
_ftime (&timebuffer);
tp->tv_sec = timebuffer.time;
tp->tv_usec = timebuffer.millitm * 1000;
return 0;
}
#endif
Now, another error , Error 3 error C3861: 'strcasecmp': identifier not found .
i'll search on google !

