Use lowercase when including Windows headers

This commit is contained in:
staphen 2021-12-27 14:07:35 -05:00
commit 1c956494a4
No known key found for this signature in database
GPG key ID: E6D757EEF0CE235F
16 changed files with 37 additions and 37 deletions

View file

@ -28,9 +28,9 @@
#include "../node/InetAddress.hpp"
#ifdef __WINDOWS__
#include <WinSock2.h>
#include <Windows.h>
#include <Shlwapi.h>
#include <winsock2.h>
#include <windows.h>
#include <shlwapi.h>
#else
#include <unistd.h>
#include <errno.h>