Hi,
In c++ I am calling C# com dll function which in turns calls call backs. The c# com dll is retrieving Lync client presence.
If there is any change in lync client presence, the c# callbacks will be triggered automatically. This crashing the application since both c++ and c# code are trying to execute at the same time.
As of now I am not using marshalling and delegate concept in my application. Whether I need use marshalling and delegate concept and how to use it in this case.
Please help me this problem.