From d244f6eb4f3af4f8ba4f8d686ca8f49f4ae89c69 Mon Sep 17 00:00:00 2001 From: Francois Gouget Date: Fri, 13 Aug 2004 19:46:43 +0000 Subject: [PATCH] The Windows headers don't define the DRV_QUERYDEVICEINTERFACE(SIZE) macros. --- dlls/winmm/tests/winmm_test.h | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/dlls/winmm/tests/winmm_test.h b/dlls/winmm/tests/winmm_test.h index 07ee3901626..f59e3ed7fee 100644 --- a/dlls/winmm/tests/winmm_test.h +++ b/dlls/winmm/tests/winmm_test.h @@ -27,6 +27,13 @@ #define WAVE_FORMAT_96S16 0x00080000 /* 96 kHz, Stereo, 16-bit */ #endif +#ifndef DRV_QUERYDEVICEINTERFACE +#define DRV_QUERYDEVICEINTERFACE (DRV_RESERVED + 12) +#endif +#ifndef DRV_QUERYDEVICEINTERFACESIZE +#define DRV_QUERYDEVICEINTERFACESIZE (DRV_RESERVED + 13) +#endif + static const unsigned int win_formats[][4] = { {0, 8000, 8, 1}, {0, 8000, 8, 2},