build-libcurl-windows icon indicating copy to clipboard operation
build-libcurl-windows copied to clipboard

Windows XP compatibility

Open LinKinUSF opened this issue 8 years ago • 1 comments

EntryPoint GetTickCount64 not found in kernel32.dll on when compiling my programs with curl and start them in windows xp.

LinKinUSF avatar Jul 30 '16 18:07 LinKinUSF

You need to define WINVER & _WIN32_WINNT in the Preprocessor Definitions

#define WINVER 0x0501
#define _WIN32_WINNT 0x0501

blackrosezy avatar Aug 12 '16 07:08 blackrosezy