Use case sensitive name of Windows header files

This commit is contained in:
Roland Winklmeier
2018-08-24 15:24:50 +02:00
parent a60ee4a7dd
commit 4cf3bc580f
5 changed files with 5 additions and 5 deletions

View File

@@ -25,7 +25,7 @@
#include <tuple>
#ifdef Q_OS_WIN
#include <Windows.h>
#include <windows.h>
#endif
namespace BlackMisc

View File

@@ -31,7 +31,7 @@
# ifndef NOMINMAX
# define NOMINMAX
# endif
# include <Windows.h>
# include <windows.h>
#else
using DWORD = unsigned long; //!< Fake Windows DWORD
#endif

View File

@@ -18,7 +18,7 @@
#include <QTextStream>
#if defined(Q_OS_WIN)
#include <Shlobj.h>
#include <shlobj.h>
#endif
using namespace BlackMisc;

View File

@@ -13,7 +13,7 @@
#include <QCoreApplication>
#ifdef Q_OS_WIN
#include <Windows.h>
#include <windows.h>
#include <tlhelp32.h>
#endif

View File

@@ -15,7 +15,7 @@
#include <QPointer>
#ifdef Q_OS_WIN32
#include <Windows.h>
#include <windows.h>
#endif
namespace BlackMisc