mirror of
https://github.com/reactos/reactos.git
synced 2025-01-04 21:38:43 +00:00
5d5247de81
svn path=/trunk/; revision=10900
18 lines
438 B
C
18 lines
438 B
C
/* $Id $
|
|
*
|
|
* Compatibility header
|
|
*
|
|
* This header is wrapper to allow compilation of Wine DLLs under ReactOS
|
|
* build system. It contains definitions commonly refered to as Wineisms
|
|
* and definitions that are missing in w32api.
|
|
*/
|
|
|
|
#include_next <mmddk.h>
|
|
|
|
#ifndef __WINE_MMDDK_H
|
|
#define __WINE_MMDDK_H
|
|
|
|
#define DRV_QUERYDSOUNDIFACE (DRV_RESERVED + 20)
|
|
#define DRV_QUERYDSOUNDDESC (DRV_RESERVED + 21)
|
|
|
|
#endif /* __WINE_MMDDK_H */
|