- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Solved! Go to Solution.
Solved! Go to Solution.
The compiler errors refer to WS2tcpip.h which is a Windows header - not ObjectARX.
Maybe this article helps. It suggest to either include winsock2.h before WS2tcpip.h
#include <winsock2.h>
#include <ws2tcpip.h>
or define WIN32_LEAN_AND_MEAN in your project settings or at the beginning of stdafx.h.
#ifndef WIN32_LEAN_AND_MEAN
#define WIN32_LEAN_AND_MEAN
#endif