- finally managed to get rid of the DWORD type.

This one was particularly nasty because Windows also defines a DWORD, but in Windows it is an unsigned long, not an unsigned int so changing types caused type conflicts and not all could be removed.
Those referring to the Windows type have to be kept, fortunately they are mostly in the Win32 directory, with a handful of exceptions elsewhere.
This commit is contained in:
Christoph Oelckers 2017-03-10 19:46:22 +01:00
commit fec958cc0a
54 changed files with 66 additions and 120 deletions

View file

@ -37,7 +37,6 @@
# define WIN32_LEAN_AND_MEAN
# include <windows.h>
# include <winsock.h>
#define USE_WINDOWS_DWORD
#else
# include <sys/socket.h>
# include <netinet/in.h>