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

15,884

Solution 1

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

Solution 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.

Solution 3

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

Share:
15,884
Admin
Author by

Admin

Updated on June 23, 2022

Comments

  • Admin
    Admin over 1 year

    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.