Click here to Skip to main content
15,881,882 members
Articles / Programming Languages / C++
Article

A class to wrap DLL functions

Rate me:
Please Sign up or sign in to vote.
4.76/5 (36 votes)
25 Jun 20021 min read 311.3K   2.5K   81   79
Make using of dll functions much easy

Introduction

My project needs to manage a large set of DLLs. All of them export a same set of functions. None of them link with the main project at compile time. We call them PlugIns. These plugins are used to extend the ability of the main program. Once they are copied into the program directory, the program can use them, and if they are removed from the directory, the main program works just fine, except that some functions cannot be used.

Since these DLLs are not available at the time that the main program is compiled, we have to use LoadLibrary, GetProcAddress and FreeLibrary to use these DLLs. It's really boring! I needed a class to ease this job. In fact, these DLLs looks just like classes (they all have the same interface: a set of functions). Using a class to wrap these DLLs is just reasonable.

Here comes the class CDLLModule. This class is only for deriving. Let's see how to use it first. Suppose you have a DLL which export two functions like this:

int WINAPI GetEngine(char *szEngineType, char *szEngineVersion);
int WINAPI StartEngine(HWND hWnd);

The wrapper class would like this:

class CMyClass : public CDLLModule
{
    DECLARE_DLL_FUNCTION(int, WINAPI,
                          GetEngine, (char *, char *))
    DECLARE_DLL_FUNCTION(int, WINAPI,
                                  StartEngine, (HWND))

    BEGIN_DLL_INIT()
        INIT_DLL_FUNCTION(int, WINAPI,
             GetEngine, (char *, char *), "GetEngine")
        INIT_DLL_FUNCTION(int, WINAPI,
                   StartEngine, (HWND), "StartEngine")
    END_DLL_INIT()
};

Then we can use it like this:

CMyClass    module;
module.Init("MyDLL.dll");
module.GetEngine(m_str1, m_str2);
module.StartEngine(m_hWnd);

I should explain it in more detail, but I am really not good at English. Anyway, the code is very simple, only 64 lines including comments. I think it's very useful, and I hope you think so too.

One last thing. It's a good idea to check the validation of the function before calling. In another word, if you are not sure that all functions are exported well from the DLL, Call it like this:

if (module.GetEngine)
    module.GetEngine(m_str1, m_str2);

Enjoy :)

Revision History

26 Jun 2002 - Initial Revision

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
China China
I'm a chinese programer living in Shanghai, currently working for a software company whose main business is to deliver computer based testing. Software simulation for computer based testing and certifications is my main responsibility in this company. Execpt for software development, I like out-door activities and photography. I am willing to make friends in China and all over the world, so contact me if you have anything in common with meSmile | :)

Comments and Discussions

 
AnswerRe: Someone could help me????? Pin
Neil Yao8-Dec-02 18:57
Neil Yao8-Dec-02 18:57 
GeneralRe: Someone could help me????? Pin
alexkid9998-Dec-02 22:16
alexkid9998-Dec-02 22:16 
Generalunsigned int* return value of dll function Pin
Orgen Kl23-Aug-02 1:33
Orgen Kl23-Aug-02 1:33 
GeneralRe: unsigned int* return value of dll function Pin
Neil Yao25-Aug-02 21:50
Neil Yao25-Aug-02 21:50 
QuestionHow to dynamically load a MFC dll ? Pin
WilliamXu5188-Jul-02 4:56
WilliamXu5188-Jul-02 4:56 
GeneralThere is one more approach -- DELAYLOAD Pin
26-Jun-02 17:39
suss26-Jun-02 17:39 
GeneralRe: There is one more approach -- DELAYLOAD Pin
Arbesto Pelta27-Jun-02 3:24
Arbesto Pelta27-Jun-02 3:24 
GeneralRe: There is one more approach -- DELAYLOAD Pin
27-Jun-02 17:57
suss27-Jun-02 17:57 
I didn't mention in my original message that there is even more elegant solution with DELAYLOAD:
Instead of copying one of A.DLL, B.DLL or C.DLL into X.DLL before Delay Loading => you can Load one of A,B,C on your own:
Check code for DELAYLOAD => you can provide several CALLBACKS that will be called at special points during DELAYLOAD: one as I recall will be called just before Loading and if you return HINSTANCE => that would be used:
So, if your EXE discovered that it has to load C.DLL, your callback has just LoadLibrary("C.DLL") and return that instance, so DELAYLOAD will never going to load X.DLL...

GL,
I;P Poke tongue | ;-P Poke tongue | ;-P
GeneralRe: There is one more approach -- DELAYLOAD Pin
Anonymous5-Nov-02 10:26
Anonymous5-Nov-02 10:26 
GeneralRe: There is one more approach -- DELAYLOAD Pin
Philippe Lhoste1-Jul-02 2:56
Philippe Lhoste1-Jul-02 2:56 
GeneralRe: There is one more approach -- DELAYLOAD Pin
Arbesto Pelta1-Jul-02 8:04
Arbesto Pelta1-Jul-02 8:04 
GeneralRe: There is one more approach -- DELAYLOAD Pin
1-Jul-02 21:15
suss1-Jul-02 21:15 
GeneralRe: There is one more approach -- DELAYLOAD Pin
Philippe Lhoste1-Jul-02 21:47
Philippe Lhoste1-Jul-02 21:47 
GeneralRe: There is one more approach -- DELAYLOAD Pin
2-Jul-02 19:27
suss2-Jul-02 19:27 
GeneralRe: There is one more approach -- DELAYLOAD Pin
Philippe Lhoste2-Jul-02 22:04
Philippe Lhoste2-Jul-02 22:04 
GeneralRe: There is one more approach -- DELAYLOAD Pin
5-Jul-02 21:13
suss5-Jul-02 21:13 
GeneralRe: There is one more approach -- DELAYLOAD Pin
Philippe Lhoste7-Jul-02 21:54
Philippe Lhoste7-Jul-02 21:54 
GeneralRe: There is one more approach -- DELAYLOAD Pin
Arbesto Pelta10-Jul-02 10:20
Arbesto Pelta10-Jul-02 10:20 
GeneralRe: There is one more approach -- DELAYLOAD Pin
Philippe Lhoste10-Jul-02 21:53
Philippe Lhoste10-Jul-02 21:53 
GeneralAnybody know how to modify the article after being removed from the unedited section Pin
Neil Yao26-Jun-02 15:42
Neil Yao26-Jun-02 15:42 
GeneralRe: Anybody know how to modify the article after being removed from the unedited section Pin
KarstenK20-Feb-03 23:09
mveKarstenK20-Feb-03 23:09 
GeneralAnalogy with HTTP homemade APIs vs. SOAP Pin
Joaquín M López Muñoz26-Jun-02 13:47
Joaquín M López Muñoz26-Jun-02 13:47 
GeneralRe: Analogy with HTTP homemade APIs vs. SOAP Pin
Neil Yao26-Jun-02 15:12
Neil Yao26-Jun-02 15:12 
GeneralJust an additional macro and idea... and question Pin
Arbesto Pelta26-Jun-02 9:03
Arbesto Pelta26-Jun-02 9:03 
GeneralRe: Just an additional macro and idea... and question Pin
Neil Yao26-Jun-02 15:53
Neil Yao26-Jun-02 15:53 

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.