problem

  • Thread starter Thread starter miguel
  • Start date Start date
M

miguel

I have the following errors in my application, what
should I do?


error LNK2001: símbolo externo "int __stdcall WSAStartup
(unsigned short,struct WSAData *)" (?
WSAStartup@@$$J18YGHGPAUWSAData@@@Z) sin resolver
kjkjjkj error LNK2001: símbolo externo "unsigned int
__stdcall socket(int,int,int)" (?socket@@$$J212YGIHHH@Z)
sin resolver
kjkjjkj error LNK2001: símbolo externo "int __stdcall
WSAGetLastError(void)" (?WSAGetLastError@@$$J10YGHXZ) sin
resolver
kjkjjkj error LNK2001: símbolo externo "int __stdcall
WSACleanup(void)" (?WSACleanup@@$$J10YGHXZ) sin resolver


Regards,

Miguel Erazo
 
miguel said:
I have the following errors in my application, what
should I do?

Add the import library for WinSock 2 - WS2_32.LIB - to your project.

Regards,
Will
 
Back
Top