I have a program written in C++ using VS2012 and Qt. When I try to run the program on XP, I get an error saying:
The procedure entry point GetTickCount64 could not be located in the dynamic link library KERNEL32.dll
I have the Visual Studio update that allows you to target Win XP, and I have the configuration set to target Win XP in the project configuration settings.
I am not using GetTickCount or GetTickCount64 anywhere in my code. Is there a way to see what part of the code is requiring this as a dependency? I have Dependency Walker and it shows up in the list, but that only tells me that it is required, not what is including it.
Some other sites I've looked at say it is a problem with declaring the Windows version in Visual Studio, but I set the platform toolset to the Win XP version in configuration properties. Is there something I'm missing?