mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-14 21:59:17 +00:00
WIN32: Fix compilation with MinGW-w64.
This commit is contained in:
parent
045b583141
commit
2872c7f9eb
@ -61,11 +61,15 @@
|
||||
#include "common/str.h"
|
||||
#include "common/timer.h"
|
||||
|
||||
#ifdef _MSC_VER
|
||||
#if defined(_MSC_VER)
|
||||
#include <winioctl.h>
|
||||
#include <ntddcdrm.h>
|
||||
#else
|
||||
#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
|
||||
|
||||
class Win32AudioCDStream : public AudioCDStream {
|
||||
|
Loading…
Reference in New Issue
Block a user