I'm working on a 32-bit C++ application, which I'm converting to a 64-bit application (simply choose another configuration, copy and adapt all relevant settings, and try to get it to build), and now I get stuck on linker error LNK2019 "unresolved external symbol ... referenced in function ..."
, and I'd like to get more information:
I have already re-built the application in 32-bit, and I've found the referred function, but when I press F12, Shift+F12 or Ctrl+F12 I don't see where the implementation is retrieved from.
I think that the function's implementation is somewhere inside a DLL, but I want to be sure of it (once this is confirmed, I can look for the corresponding settings, defining the location, and copy this setting for my 64-bit configuration).
Maybe the question can be reformulated in the following way: in case a function is retrieved from a DLL, is it possible to know in which DLL this function is implemented?