In Windows there is a DllMain and DLL_PROCESS_ATTACH / DLL_PROCESS_DETACH flags, which allow to initialize / free resources after DLL is attached to a process... So how can I specify an entry point in case of OS X? As always, I can't find anything useful in Apple documentation :(
|
feedback
|
|
Wouldn't that work?
| |||
|
feedback
|
|
I think malkia (upvoted) and Bavarious have the right answer, but since I already looked it up: One way to do this is to set your init routine. Look for the "Initialization Routine" in your Xcode build settings for your library. Prefix the function name with an underscore. I.e. if your init routine is called DllMain, enter "_DllMain". Also, I have previously done some initialization using obj-c++ doing something like this:
| |||||
feedback
|
|
The Dynamic Library Programming Topics document on Apple’s Web site shows the use of
and
to implement initialisers and finalizers in dynamic libraries. | |||
|
feedback
|