Click here to Skip to main content
15,903,362 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I've run a correct code but I see 21 errors like this:(CLR console app.)

error LNK2019: unresolved external symbol "extern "C" int __stdcall send(unsigned int,char const *,int,int)" (?send@@$$J216YGHIPBDHH@Z) referenced in function "int __clrcall main(cli::array<class system::string="" ^="">^)" (?main@@$$HYMHP$01AP$AAVString@System@@@Z)
Posted
Updated 3-Jan-10 1:23am
v2

1 solution

You've got a linker error, which means that you aren't linking with the correct library. You need to find out where your IDE controls what libraries get linked against, and add the path to the library which contains the code for extern "C" int __stdcall send
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900