build-libcurl-windows
build-libcurl-windows copied to clipboard
Windows XP compatibility
EntryPoint GetTickCount64 not found in kernel32.dll on when compiling my programs with curl and start them in windows xp.
You need to define WINVER
& _WIN32_WINNT
in the Preprocessor Definitions
#define WINVER 0x0501
#define _WIN32_WINNT 0x0501