aboutsummaryrefslogtreecommitdiff
path: root/backends/audiocd
diff options
context:
space:
mode:
authorJohannes Schickel2016-03-13 20:06:51 +0100
committerJohannes Schickel2016-03-14 01:04:11 +0100
commit6a127df564a9e02d154b8e8f6e930896e7199349 (patch)
tree69ebc64b5a8d032674735511c5900a63a154d6f4 /backends/audiocd
parent88f8ecde0b3e29a6901b408de535216f70357028 (diff)
downloadscummvm-rg350-6a127df564a9e02d154b8e8f6e930896e7199349.tar.gz
scummvm-rg350-6a127df564a9e02d154b8e8f6e930896e7199349.tar.bz2
scummvm-rg350-6a127df564a9e02d154b8e8f6e930896e7199349.zip
WIN32: Cleanup header includes for AudioCD code.
Diffstat (limited to 'backends/audiocd')
-rw-r--r--backends/audiocd/win32/win32-audiocd.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/backends/audiocd/win32/win32-audiocd.cpp b/backends/audiocd/win32/win32-audiocd.cpp
index eb9c472ff9..6c057efdb7 100644
--- a/backends/audiocd/win32/win32-audiocd.cpp
+++ b/backends/audiocd/win32/win32-audiocd.cpp
@@ -61,18 +61,17 @@
#include "common/str.h"
#include "common/timer.h"
+#include <winioctl.h>
#if _MSC_VER < 1900
// WORKAROUND: Older versions of MSVC might not supply DDK headers by default.
// Visual Studio 2015 contains the required headers. We use a compatability
// header from MinGW's w32api for all older versions.
// TODO: Limit this to the Visual Studio versions which actually require this.
-#include <winioctl.h>
#include "msvc/ntddcdrm.h"
#elif defined(__MINGW32__) && !defined(__MINGW64__)
// Classic MinGW uses non standard paths for DDK headers.
#include <ddk/ntddcdrm.h>
#else
-#include <winioctl.h>
#include <ntddcdrm.h>
#endif