7

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.

Bart
  • 19,692
  • 7
  • 68
  • 77
Achilles
  • 91
  • 1
  • 2
  • 4

3 Answers3

3

Here are some sources that will get you started : CodeGuru,MSDN. Enjoy.

Scis
  • 2,934
  • 3
  • 23
  • 37
2

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.

Jose L
  • 322
  • 3
  • 13
1

When you create a new project, you select the DLL project type at the start of the wizard.

Some programmer dude
  • 400,186
  • 35
  • 402
  • 621