WIN32: Fix compilation with MinGW-w64.
This commit is contained in:
parent
045b583141
commit
2872c7f9eb
1 changed files with 6 additions and 2 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue