I created a C++ (native) DLL that exports one function and I'm trying to call in from C# (managed) code and I receive runtime error that the function name can't be found in my DLL. Here's the code of the DLL: #include "pch.h" #include "framework.h" #include "Device.h" // This is [...] read more