Fixed ==/!= mismatch.
[wine] / dlls / winmm / wineoss / oss.h
1 /* Definition for OSS drivers : wine multimedia system */
2
3 #ifndef __WINE_CONFIG_H 
4 # error You must include config.h to use this header 
5 #endif 
6
7 #if defined(HAVE_SYS_SOUNDCARD_H)
8 # include <sys/soundcard.h>
9 #elif defined(HAVE_MACHINE_SOUNDCARD_H)
10 # include <machine/soundcard.h>
11 #elif defined(HAVE_SOUNDCARD_H)
12 # include <soundcard.h>
13 #endif
14
15 #ifdef HAVE_SYS_ERRNO_H
16 #include <sys/errno.h>
17 #endif
18
19 #ifdef SOUND_VERSION
20 #define IOCTL(a,b,c)            ioctl(a,b,&c)
21 #else
22 #define IOCTL(a,b,c)            (c = ioctl(a,b,c))
23 #endif
24
25 extern LONG OSS_WaveInit(void);
26 extern BOOL OSS_MidiInit(void);
27