I am writing my program in Visual Studio 2010. I am unable to link a file named ws2_32.dll with my project.

Can anyone tell me how I can do that?

link|improve this question

0% accept rate
2  
What have you tried? Where have you changed things in your project? What actual results were obtained? If there were error messages, what were they? – Damien_The_Unbeliever Mar 7 '11 at 13:35
feedback

3 Answers

Typically you dont link to ws2_32.dll directly but to WS2_32.Lib, which you can find in the Windows SDK. So in your code you write

#include <winsock2.h>

and to your linker-settings you add WS2_32.Lib and you're good to go.

The Windows SDK is here:

http://msdn.microsoft.com/en-us/windows/bb980924.aspx

link|improve this answer
If you've installed Visual Studio 2010 properly, you shouldn't need to download the SDK. – Cody Gray Mar 7 '11 at 14:04
Or maybe it depeneds on the version; i dont know if that's still true for 2010, but in 2008 express it was not included. Thanks for the comment tho, hopefully it makes original poster look in the VS2010 default lib-folder first. – eznme Mar 7 '11 at 14:38
Oh yeah, I'm not really sure about the Express edition. I've never used it. The full versions of both 2008 and 2010 include the Windows SDK, no extra downloads required. Including the link is still helpful, but I'd leave it as a last resort. – Cody Gray Mar 7 '11 at 14:59
feedback

You need to load the file using LoadLibrary if you do not have the lib file.

link|improve this answer
feedback

The first order of business is importing the header file that defines functions exported by ws2_32.dll. You do that by adding the following statement to the top of any source file that you wish to call those functions in:

#include <winsock2.h>

Then, you have to tell the linker where it can find the import library for that DLL. There are two ways to do that in Visual Studio, but the simplest way is adding the following line to your source code:

#pragma comment(lib, "ws2_32.lib")

You could also add it as a dependency to your linker's "Additional Dependencies" property (find that under your Project Properties -> Configuration Properties -> Linker -> Input).

MSDN also has a getting started guide that walks you through creating a basic Winsock application. Make sure that you've read it before proceeding any further.

link|improve this answer
thanx u very much, its working. – Sanjay Mar 9 '11 at 11:29
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.