Exporting static data in a DLL
In this thread at cprogramming.com it is suggested that a static variable is local to the dll and not exported. Summary of discussion below The static member is not accessed directly by code in the calling application, only through member functions of the class in the dll. However there are several inline functions accessing the … Read more