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?
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.
|
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
dll.h
main.c
when compiled with
produces the expected output of
| ||||
|
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.
| |||
feedback
|