Updated code to handle Borland 5.5 Compile.

This commit is contained in:
skarg
2009-07-29 17:53:32 +00:00
parent a503aca204
commit 6adf97553f
8 changed files with 68 additions and 13 deletions
+8
View File
@@ -30,8 +30,16 @@
#define WIN32_LEAN_AND_MEAN
#define STRICT 1
#include <windows.h>
#if defined(__BORLANDC__)
#include <winsock2.h>
#else
#include <sys/time.h>
#endif
#include <sys/timeb.h>
#if defined(__BORLANDC__)
#define _timeb timeb
#define _ftime(param) ftime(param)
#endif
/* Timer Module */
#ifndef MAX_MILLISECOND_TIMERS