1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- #ifndef HEADER_CURL_VERSION_WIN32_H
- #define HEADER_CURL_VERSION_WIN32_H
- #include "curl_setup.h"
- #if defined(_WIN32)
- typedef enum {
- VERSION_LESS_THAN,
- VERSION_LESS_THAN_EQUAL,
- VERSION_EQUAL,
- VERSION_GREATER_THAN_EQUAL,
- VERSION_GREATER_THAN
- } VersionCondition;
- typedef enum {
- PLATFORM_DONT_CARE,
- PLATFORM_WINDOWS,
- PLATFORM_WINNT
- } PlatformIdentifier;
- bool curlx_verify_windows_version(const unsigned int majorVersion,
- const unsigned int minorVersion,
- const unsigned int buildVersion,
- const PlatformIdentifier platform,
- const VersionCondition condition);
- #endif
- #endif
|