Skip to content
Snippets Groups Projects
Commit 3c28a53f authored by Rob Swindell's avatar Rob Swindell :speech_balloon:
Browse files

Don't try to #include XPDEV header files unless USE_XPDEV is defined

This fixes the Borland/Windows build of xsdk that broke yesterday.
parent b0a78710
No related branches found
No related tags found
1 merge request!463MRC mods by Codefenix (2024-10-20)
......@@ -201,8 +201,10 @@
\****************************************************************************/
#include "xsdk.h"
#include "conwrap.h"
#include "threadwrap.h"
#if defined USE_XPDEV
#include "conwrap.h"
#include "threadwrap.h"
#endif
#ifdef _WINSOCKAPI_
WSADATA WSAData; // WinSock data
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment