summaryrefslogtreecommitdiff
path: root/Source/Core/InputCommon
diff options
context:
space:
mode:
Diffstat (limited to 'Source/Core/InputCommon')
-rw-r--r--Source/Core/InputCommon/ControllerInterface/DInput/XInputFilter.cpp4
-rw-r--r--Source/Core/InputCommon/ControllerInterface/DInput/XInputFilter.h2
-rw-r--r--Source/Core/InputCommon/ControllerInterface/ForceFeedback/ForceFeedbackDevice.h2
-rw-r--r--Source/Core/InputCommon/ControllerInterface/SDL/SDL.cpp2
-rw-r--r--Source/Core/InputCommon/ControllerInterface/Win32/Win32.cpp2
-rw-r--r--Source/Core/InputCommon/ControllerInterface/XInput/XInput.h2
6 files changed, 7 insertions, 7 deletions
diff --git a/Source/Core/InputCommon/ControllerInterface/DInput/XInputFilter.cpp b/Source/Core/InputCommon/ControllerInterface/DInput/XInputFilter.cpp
index 4379749e5f..3d3d8049c0 100644
--- a/Source/Core/InputCommon/ControllerInterface/DInput/XInputFilter.cpp
+++ b/Source/Core/InputCommon/ControllerInterface/DInput/XInputFilter.cpp
@@ -7,8 +7,8 @@
#include <unordered_set>
#include <vector>
-#include <Windows.h>
-#include <SetupAPI.h>
+#include <windows.h>
+#include <setupapi.h>
namespace ciface::DInput
{
diff --git a/Source/Core/InputCommon/ControllerInterface/DInput/XInputFilter.h b/Source/Core/InputCommon/ControllerInterface/DInput/XInputFilter.h
index de3d684372..52911dabaa 100644
--- a/Source/Core/InputCommon/ControllerInterface/DInput/XInputFilter.h
+++ b/Source/Core/InputCommon/ControllerInterface/DInput/XInputFilter.h
@@ -3,7 +3,7 @@
#pragma once
-#include <Windows.h>
+#include <windows.h>
#include <unordered_set>
namespace ciface::DInput
diff --git a/Source/Core/InputCommon/ControllerInterface/ForceFeedback/ForceFeedbackDevice.h b/Source/Core/InputCommon/ControllerInterface/ForceFeedback/ForceFeedbackDevice.h
index 6a00d2812a..dabc1d5c63 100644
--- a/Source/Core/InputCommon/ControllerInterface/ForceFeedback/ForceFeedbackDevice.h
+++ b/Source/Core/InputCommon/ControllerInterface/ForceFeedback/ForceFeedbackDevice.h
@@ -7,7 +7,7 @@
#include <string>
#include <thread>
-#include <Windows.h>
+#include <windows.h>
#include "Common/Event.h"
#include "Common/Flag.h"
diff --git a/Source/Core/InputCommon/ControllerInterface/SDL/SDL.cpp b/Source/Core/InputCommon/ControllerInterface/SDL/SDL.cpp
index f6912f67ce..5aeb9e07db 100644
--- a/Source/Core/InputCommon/ControllerInterface/SDL/SDL.cpp
+++ b/Source/Core/InputCommon/ControllerInterface/SDL/SDL.cpp
@@ -8,7 +8,7 @@
#include <vector>
#ifdef _WIN32
-#include <Windows.h>
+#include <windows.h>
#endif
#include <SDL3/SDL.h>
diff --git a/Source/Core/InputCommon/ControllerInterface/Win32/Win32.cpp b/Source/Core/InputCommon/ControllerInterface/Win32/Win32.cpp
index 79584913cf..eb4bd6fd6b 100644
--- a/Source/Core/InputCommon/ControllerInterface/Win32/Win32.cpp
+++ b/Source/Core/InputCommon/ControllerInterface/Win32/Win32.cpp
@@ -3,7 +3,7 @@
#include "InputCommon/ControllerInterface/Win32/Win32.h"
-#include <Windows.h>
+#include <windows.h>
#include <cfgmgr32.h>
// must be before hidclass
#include <initguid.h>
diff --git a/Source/Core/InputCommon/ControllerInterface/XInput/XInput.h b/Source/Core/InputCommon/ControllerInterface/XInput/XInput.h
index 95fe6a3c6f..b006d1c7cc 100644
--- a/Source/Core/InputCommon/ControllerInterface/XInput/XInput.h
+++ b/Source/Core/InputCommon/ControllerInterface/XInput/XInput.h
@@ -9,7 +9,7 @@
#pragma once
#include <windows.h>
-#include <XInput.h>
+#include <xinput.h>
#include "InputCommon/ControllerInterface/ControllerInterface.h"