stream_cddb: fix compilation on MinGW-w64

Like the VCD case, stream_cddb.c relies on ntddcdrm.h, which is no
longer under the ddk directory.
This commit is contained in:
Stephen Hutchinson 2013-04-04 23:56:35 -04:00 committed by wm4
parent b224f37174
commit 33639d0156
1 changed files with 1 additions and 1 deletions

View File

@ -57,7 +57,7 @@
#elif defined(__FreeBSD__) || defined(__FreeBSD_kernel__) || defined(__NetBSD__) || defined(__OpenBSD__) || defined(__DragonFly__)
#include <sys/cdio.h>
#elif defined(__MINGW32__) || defined(__CYGWIN__)
#include <ddk/ntddcdrm.h>
#include <ntddcdrm.h>
#elif defined(__bsdi__)
#include <dvd.h>
#elif defined(__APPLE__) || defined(__DARWIN__)