Search code examples
linkerevcwsastartup

WSAStartup link error


I am using EVC++ and I want to compile the program which uses the sockets. I've included

#include <winsock2.h>

And I have included in project properties a path to Ws2.lib But still get the error at link step:

error LNK2019: unresolved external symbol WSAStartup referenced in function ...

How to resolve this problem?


Solution

  • #pragma comment(lib,"WS2_32") after all #include's