win: use exact case when including Windows SDK header files

This prevents clang 6.x from emitting nonportable-system-include-path
warnings.
This commit is contained in:
Bert Belder 2018-05-16 21:08:44 -07:00
parent 3e3251e0d9
commit 354e56be7e
No known key found for this signature in database
GPG Key ID: 7A77887B2E2ED461

View File

@ -17,9 +17,9 @@
#pragma warning(push, 1)
#endif
#include <windows.h>
#include <winsock2.h>
#include <ws2tcpip.h>
#include <Windows.h>
#include <WinSock2.h>
#include <WS2tcpip.h>
#ifndef __GNUC__
#pragma warning(pop)