I have a program that I have no problems with, and it compiles on my a computer that I have which runs windows 7 32bit. To run the program, I have to use a library, which I have the .h and the .lib files for.
I needed to make a small change to the program, just changing some of the text output on the help screen, but I was doing it from another computer, which is running windows 7 64bit. When I attempt to compile the program, without making any changes to the code, just copying the files over to the new computer from dropbox, I get "LNK2019: unresolved external symbol ..." for some of the functions that I am calling from the library.
For compiling, I am using Qt Creator, and calling on the microsoft visual studio compiler (I use the same on both computers, except of course that one is x64 and the other x86).
Has anyone encountered an issue similar to this in the past? If so, what did you do to fix it?