You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, I have created a DLL which is used by an application. I have created this DLL using the MSVC toolchain and my app is successfully able to load this DLL but for some reason its throwing an exception insider objc.dll
Exception thrown at 0x00007FFCFE843B6A (objc.dll) in xyz.exe: 0xE06D7363: Microsoft C++ Exception (parameters: 0x0000000019930520, 0x0000000007CDFC18, 0x0000000007CDFC20, 0x0000000007CDFC37).
Is there a way to find out what the exception is exactly?
The text was updated successfully, but these errors were encountered:
Did you build all your DLLs using matching /MD or /MDd flags?
Otherwise you should be able to debug this by launching the exe in Visual Studio ("Open a project or solution"), and adding the C:\GNUstep\x64\Debug\bin to your symbol file locations in the VS settings, so it can find the .pdb files.
Hi, I have created a DLL which is used by an application. I have created this DLL using the MSVC toolchain and my app is successfully able to load this DLL but for some reason its throwing an exception insider objc.dll
Is there a way to find out what the exception is exactly?
The text was updated successfully, but these errors were encountered: