Reputation: 91
How can I create a DLL in C using Visual Studio, for a program written in C?
Would really appreciate if anyone could post any direct or forum-page-link for the same.
Upvotes: 7
Views: 19107
Reputation: 322
I hope you will find this information of the Microsoft website interesting.
It explains how to create and use a dll. The most important thing is to create a New project and then select a Win32 Console Application. Afterwards, in the Application Settings page, under Application type, you have to select DLL.
Upvotes: 2
Reputation: 2984
Here are some sources that will get you started : CodeGuru,MSDN. Enjoy.
Upvotes: 3
Reputation: 409442
When you create a new project, you select the DLL project type at the start of the wizard.
Upvotes: 1