Achilles
Achilles

Reputation: 91

How can I create a DLL in C using Visual Studio?

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

Answers (3)

Jose L
Jose L

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

Scis
Scis

Reputation: 2984

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

Upvotes: 3

Some programmer dude
Some programmer dude

Reputation: 409442

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

Upvotes: 1

Related Questions