In my solution, I have an unmanaged C++ DLL (I have the source code available to me), and a managed/unmanaged Visual C++ executable that uses the DLL in it. When I'm debugging the executable and come across an object that was exported from the DLL, and I hover the mouse over it, it shows only "Children could not be evaluated", instead of showing all the member variables of the object.
I checked my output window and it shows that it loads the DLL with symbols, but other than that, I really don't know what else to look for.
Edit: On further inspection, I can view all member variables after I step into code that is part of the DLL itself, but from my executable's code, I can't view them- As I can't just step into the DLL's code arbitrarily, this is a problematic- is there some way I can change this?