I can compile DLLs properly using mingw and do the exports/imports stuff. What I am looking for is defining the dll onload function properly as you would in MS VC products. Google didn't turn up anything. Anyone have any ideas or a link to a tutorial?

link|improve this question

80% accept rate
1  
By "dll onload" you referring to the DllMain? Are you sure it has the right signature? It should be like this: extern "C" DLL_EXPORT BOOL APIENTRY DllMain(HINSTANCE hinstDLL, DWORD Reason, LPVOID LPV). Try adding a code snippet to your question. – Vitor Braga Jun 21 '11 at 20:01
Yes that's exactly what I mean, thanks. – aking1012 Jun 21 '11 at 20:05
@aking1012 I didn't say that you should add that DllMain signature to the question but for you to add your own DllMain signature. – Vitor Braga Jun 21 '11 at 20:17
Oh, I don't need it to take any arguments. I just need to execute function contents with no arguments and no return value on dll load. – aking1012 Jun 21 '11 at 20:21
Have you tried compiling this with MinGW? I don't see a reason this shouldn't work. – rubenvb Jun 21 '11 at 20:27
show 3 more comments
feedback

migrated from programmers.stackexchange.com Jun 21 '11 at 20:06

This question came from our site for professional programmers interested in conceptual questions about software development.

2 Answers

up vote 2 down vote accepted

Okay, so after some fiddling...it's working. For anyone else that is having issues here it is. My issues weren't related to compiling in instead of loading dynamically. It was a mash-up of a couple of tutorial/question/how-tos that got me to this point.

dll.c


#include < stdio.h>
#include < windows.h>
#include "dll.h"

//extern "C" BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD Reason, LPVOID LPV) {
//This one was only necessary if you were using a C++ compiler

BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved) {

    switch (fdwReason)
    {
        case DLL_PROCESS_ATTACH:
            // Code to run when the DLL is loaded
        printf ("Load working...\n");
            break;

        case DLL_PROCESS_DETACH:
            // Code to run when the DLL is freed
        printf ("Unload working...\n");
            break;

        case DLL_THREAD_ATTACH:
            // Code to run when a thread is created during the DLL's lifetime
        printf ("ThreadLoad working...\n");
            break;

        case DLL_THREAD_DETACH:
            // Code to run when a thread ends normally.
        printf ("ThreadUnload working...\n");
            break;
    }

    return TRUE;
} 

EXPORT void hello(void) {
    printf ("Hello\n");
}

dll.h


#ifndef DLL_H_
#define DLL_H_

#ifdef BUILD_DLL
/* DLL export */
#define EXPORT __declspec(dllexport)
#else
/* EXE import */
#define EXPORT __declspec(dllimport)
#endif

EXPORT void hello(void);

#endif /* DLL_H_ */

main.c


#include < windows.h>
#include < stdio.h>

int main () {

    /*Typedef the hello function*/
    typedef void (*pfunc)();

    /*Windows handle*/
    HANDLE hdll;

    /*A pointer to a function*/
    pfunc hello;

    /*LoadLibrary*/
    hdll = LoadLibrary("message.dll");

    /*GetProcAddress*/
    hello = (pfunc)GetProcAddress(hdll, "hello");

    /*Call the function*/
    hello();
    return 0;
}

when compiled with

i586-mingw32msvc-gcc -c -DBUILD_DLL dll.c
i586-mingw32msvc-gcc -shared -o message.dll dll.o -Wl,--out-implib,libmessage.a
i586-mingw32msvc-gcc -c hello.c
i586-mingw32msvc-gcc -o hello.exe hello.o message.dll

produces the expected output of

Load working...
Hello
Unload working...

link|improve this answer
Great you got it working :) – Vitor Braga Jun 22 '11 at 0:26
feedback

Since mingw is just a windows port of GCC and associated tools, you can use GCC constructor and destructor attributes. These work for both shared and static libraries, and execute code before and after main is run, respectively. Additionally, you can specify multiple constructor and destructor functions per library.

static void __attribute__((constructor))
your_lib_init(void)
{
    fprintf(stderr, "library init\n");
}

static void __attribute__((destructor))
your_lib_destroy(void)
{
    fprintf(stderr, "library destroy\n");
}
link|improve this answer
Thanks. This is helpful for the cross-platform stuff if I need to do something similar on the nix side. – aking1012 Jun 22 '11 at 19:54
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.