I noticed that the included headers for Windows development (such as Windows.h
) are essentially for Windows XP and older. I am unable to call functions such as GetTickCount64
because they require Windows Vista or higher. I have Windows 7, but these functions are still absent. I understand that linking to such functions would increase the requirements on my program, and I am OK with that.
Does anyone have any experience with this? Can I use the newer Win32 API with mingw? How?