api: make .h filenames lowercase for building with MinGW on Linux

MinGW supplies all Windows header files using lowercase filenames.
This makes some of the #include lines in wintun.h fail to resolve the
.h files correctly on a case-sensitive filesystem.

Signed-off-by: Simon Rozman <simon@rozman.si>
This commit is contained in:
Simon Rozman 2021-03-16 10:11:00 +01:00
parent cef7922556
commit 1ccd623e94

View File

@ -5,8 +5,8 @@
#pragma once #pragma once
#include <Windows.h> #include <windows.h>
#include <IPExport.h> #include <ipexport.h>
#include <ifdef.h> #include <ifdef.h>
#ifdef __cplusplus #ifdef __cplusplus