Click here to Skip to main content
15,914,780 members
Articles / Desktop Programming / MFC
Article

Super Easy DLL

Rate me:
Please Sign up or sign in to vote.
3.00/5 (39 votes)
2 Dec 2004CPOL3 min read 146.4K   1.1K   31   36
How to create a DLL the easiest way! No need for LoadLibrary, GetProcAddress, or typedefs! Just link to the lib, include the header file, and start calling functions from your DLL! Super Easy!

Introduction

I saw many articles on CodeProject on using DLLs the easiest way, but none of them seemed very easy to me. All of them had some weird function that did all the GetProcAddress and LoadLibrary stuff. I didn't want that, I just wanted to make a DLL, link to it, include a header, and start calling functions from anywhere within my project. Finally, I found out how to do this.

Creating the Super Easy DLL

First, you just open Visual Studio and click File... New... and select Win32 Dynamic-Link Library. Then, when the next screen comes up, select A Simple DLL project and click Finish.

Now you have your base DLL project setup. Now, in order for us to be able to use our DLL functions in other projects, we must export them. So, first we have to add a .def file. Click File... New... and then select Text File and give it the name EasyDLL.def. Now, we are only going to add one function to our DLL for simplicity. So double click the EasyDLL.def file in your project and add the following text:

LIBRARY "EASYDLL.dll"
EXPORTS
 EASYDLL_GetVersion

Next, you will need to double click the EasyDLL.cpp file and remove the following code:

BOOL APIENTRY DllMain( HANDLE hModule, 
                       DWORD  ul_reason_for_call, 
                       LPVOID lpReserved
                     )
{
    return TRUE;
}

Now, we should have a blank EasyDLL.cpp file except for the comment and the #include "stdafx.h" line. So now, we add a new header file by clicking File... New... and selecting C/C++ Header File, and give it the name EasyDLL.h and click OK. Now, double click EasyDLL.h file and add the following code:

#ifdef __cplusplus
extern "C" {
#endif



#define    WINEXPORT WINAPI 

int    WINEXPORT EASYDLL_GetVersion();

#ifdef __cplusplus
}
#endif

Now, we need to double click EasyDLL.cpp and add the following code:

#include "EasyDLL.h"

int WINEXPORT EASYDLL_GetVersion()
{
    return 1;
}

Now your DLL is ready to go! All you have to do is build your project.

Using the Super Easy DLL

This is where the "Super Easy" part comes in. All you have to do to use your DLL now is link to your .lib file by going to Project.... Settings... and the Link tab. Add in EasyDLL.lib into the Object/Library modules text box. Then, just include EasyDLL.h wherever you want to use the functions from the DLL, and then you can just start calling functions.

#include <iostream.h>
#include <windows.h>
#include "EasyDLL.h"
    

int main()
{
    int nVersion = EASYDLL_GetVersion();
    return 0;    
}

We need to include windows.h because of the WINAPI macro in the EasyDLL.h file.

Points of Interest

  • The way of creating a DLL presented here removes the need to use LoadLibrary, GetProcAddress and doing all those typedefs every time you want to use a function.
  • You can save space in your DLL by clicking on Project... Settings... and select Use MFC in a shared DLL instead of Not Using MFC.
  • You can include your EasyDLL.h file in your StdAfx.h file of your MFC project, and you will be able to use the function calls from your DLL anywhere in your project.

Conclusion

I hope this helped some of you out. I know it makes it much easier for me to create a re-usable library of functions without having to worry about all those LoadLibrary and GetProcAddress calls. Not to mention I can just include the header file in the StdAfx.h file of my project and use the DLL functions anywhere in my project.

History

  • December 2nd, 2004 - First version of EasyDLL uploaded to CodeProject.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Web Developer
Canada Canada
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralRe: ROTFL Pin
Kappy2-Dec-04 9:24
Kappy2-Dec-04 9:24 
GeneralRe: ROTFL Pin
Rolf Schaeuble2-Dec-04 9:46
Rolf Schaeuble2-Dec-04 9:46 
GeneralRe: ROTFL Pin
Kappy2-Dec-04 9:55
Kappy2-Dec-04 9:55 
GeneralRe: ROTFL Pin
Rolf Schaeuble2-Dec-04 10:43
Rolf Schaeuble2-Dec-04 10:43 
GeneralRe: ROTFL PinPopular
Greg Ellis2-Dec-04 13:04
Greg Ellis2-Dec-04 13:04 
GeneralRe: ROTFL Pin
Rolf Schaeuble2-Dec-04 21:22
Rolf Schaeuble2-Dec-04 21:22 
GeneralRe: ROTFL Pin
Greg Ellis3-Dec-04 3:22
Greg Ellis3-Dec-04 3:22 
GeneralRe: ROTFL Pin
Rolf Schaeuble3-Dec-04 5:21
Rolf Schaeuble3-Dec-04 5:21 

Are you saying that your comment wasn't meant on personal level?
...
If you don't want to be attacked personally then start treating other people with the same respect that you feel you deserve

I didn't complain. I just said I liked your rant; it was well done. This was a compliment Smile | :)
I admit that the P.S. of my comment is quite cynical; however, it was not ment as a personal attack (after all, I don't know you). If you understood it that way, I apologize.

Now to the RTFM thing:
Just being told to go RTFM is useless; I one would have known where to look, one would have chosen that way, because it's faster and easier than asking on a mailing list.
Begin pointed to some useful documentation that covers the topic of interest is not useless. With this information, one can easily get the knowledge you need. And a book can go into more details than a short answer of a short article; and it's always the details that matter.
That's the difference.

And actually you don't need so many books. One or two good books about Windows programming completely suffice to reach a level of expertice where the MSDN Library can answer most of your questions. Without those books a beginner will have a hard time getting started; once you value your time financally, it's cheeper to buy the books (not to mention that you will learn more from them). Also, computers need electricity and internet connections also cost money. In the end, books aren't soo expensive.

Personally, I find CodeProject and similar sites very useful for topics that aren't covered in books.

But hey, that's just my opinion. No need to get infuriated. If someone attacks you or your work, you always have the option of ignoring him. So let's stop this; it doesn't help anyone (yes, I know, my original comment also didn't help anyone...)

- Rolf
GeneralWell... Pin
Kochise2-Dec-04 21:27
Kochise2-Dec-04 21:27 
GeneralRe: Well... Pin
Greg Ellis3-Dec-04 4:54
Greg Ellis3-Dec-04 4:54 
GeneralRe: ROTFL Pin
Paul Charles3-Dec-04 2:14
Paul Charles3-Dec-04 2:14 
GeneralRe: ROTFL Pin
Greg Ellis3-Dec-04 3:09
Greg Ellis3-Dec-04 3:09 
GeneralRe: ROTFL Pin
John M. Drescher2-Dec-04 13:17
John M. Drescher2-Dec-04 13:17 
GeneralRe: ROTFL Pin
Greg Ellis2-Dec-04 13:43
Greg Ellis2-Dec-04 13:43 
GeneralRe: ROTFL Pin
John M. Drescher2-Dec-04 15:56
John M. Drescher2-Dec-04 15:56 
GeneralRe: ROTFL Pin
Avelino Ferreira24-Feb-16 16:43
professionalAvelino Ferreira24-Feb-16 16:43 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.