Tagged Questions

0
votes
1answer
48 views

Problem when importing class with static member

I have created a simple RAII class in one of my DLLs (let's call it the exporting DLL) which monitors for configuration restore in my application: Header file class __declspec(dllexport) ...
0
votes
1answer
59 views

Will adding data members(At end) in Exportable struct cause problems?

Exportable function has the struct as a one of the parameter. This dll is used by many Exes One of the Exe needs to send some additional data , so we have added one member at the end of the struct ...