All my initialization in the dll can be done through a single class constructor;
what i did was to declare an object of this class as a global object, and then do all the initialization there.
is that good? thread-safe? I know that i can write a dll entry point and do "new Class" there of the global pointer (which would be null prior to that); so which is better?
Thanks