I've been struggling with upgrading this solution. It has both managed and unmanaged memory and includes calls to methods that Marshal the string variables. The linking errors I get are in pairs.
LNK2028 unresolved token void __cdecl function(wchar_t const *, wchar_t const * *) referenced in function public: void __clrcall NamespaceOfTheSolutionIAmWorkingOn::function(class System::String ^, cli::array ^)
and
LNK2019 unresolved external symbol void __cdecl function(wchar_t const *, wchar_t const * *) referenced in function public: void __clrcall NamespaceOfTheSolutionIAmWorkingOn::function(class System::String ^, cli::array ^)
I've obviously modified the error messages a bit to make them more readable, the real function has a long name and passes several ints as well.
Any help would be greatly appreciated!