22 lines
425 B
C
22 lines
425 B
C
/* Definition for OSS drivers : wine multimedia system */
|
|
|
|
#if defined(HAVE_SYS_SOUNDCARD_H)
|
|
# include <sys/soundcard.h>
|
|
#elif defined(HAVE_MACHINE_SOUNDCARD_H)
|
|
# include <machine/soundcard.h>
|
|
#elif defined(HAVE_SOUNDCARD_H)
|
|
# include <soundcard.h>
|
|
#endif
|
|
|
|
#ifdef HAVE_SYS_ERRNO_H
|
|
#include <sys/errno.h>
|
|
#endif
|
|
|
|
#ifdef SOUND_VERSION
|
|
#define IOCTL(a,b,c) ioctl(a,b,&c)
|
|
#else
|
|
#define IOCTL(a,b,c) (c = ioctl(a,b,c))
|
|
#endif
|
|
|
|
|