DominionSpy wrote:
Am I right in saying that this is only if you have MinGW?
If so, this is a great thing to get the project back on track

, but I would think that we'll have to take out the MinGW dependency asap.
If not, klasse!
I'm not sure. I've compiled it with MinGW, but I think it will work with MS Visual C++ or some Borland equivalent as well. It might need a few changes but those are just minor things.
In fact, I had to do some strange things to get the networking support to work on both Linux and Windows:
Code:
#ifdef WIN32
#include <winsock2.h>
#else
#include <sys/sockets.h>
#include <arpa/inet.h>
etc.
(Yes, MinGW needs Winsock for IP support...)
_________________
Feel free to contact me over Email! My current timezone: Europe/Amsterdam (GMT+1 or GMT+2)Code:
+------------Oo.------+
| Transport Empire -> |
+---------------------+
[ General TE Discussion ] [ TE Development ] [ TE Coding ]Under construction...