Define WINVER before including any other header file on Windows.
This commit is contained in:
parent
4766359e14
commit
c94ede3b87
1 changed files with 8 additions and 5 deletions
13
have.h
13
have.h
|
@ -21,6 +21,14 @@
|
||||||
#ifndef __TINC_HAVE_H__
|
#ifndef __TINC_HAVE_H__
|
||||||
#define __TINC_HAVE_H__
|
#define __TINC_HAVE_H__
|
||||||
|
|
||||||
|
#ifdef HAVE_MINGW
|
||||||
|
#ifdef WITH_WINDOWS2000
|
||||||
|
#define WINVER Windows2000
|
||||||
|
#else
|
||||||
|
#define WINVER WindowsXP
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <stdarg.h>
|
#include <stdarg.h>
|
||||||
|
@ -32,11 +40,6 @@
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
|
|
||||||
#ifdef HAVE_MINGW
|
#ifdef HAVE_MINGW
|
||||||
#ifdef WITH_WINDOWS2000
|
|
||||||
#define WINVER Windows2000
|
|
||||||
#else
|
|
||||||
#define WINVER WindowsXP
|
|
||||||
#endif
|
|
||||||
#include <w32api.h>
|
#include <w32api.h>
|
||||||
#include <windows.h>
|
#include <windows.h>
|
||||||
#include <ws2tcpip.h>
|
#include <ws2tcpip.h>
|
||||||
|
|
Loading…
Reference in a new issue