~ubuntu-branches/ubuntu/hoary/kdemultimedia/hoary

« back to all changes in this revision

Viewing changes to kmid/player/awe_sup.h

  • Committer: Bazaar Package Importer
  • Author(s): Martin Schulze
  • Date: 2003-01-22 15:00:51 UTC
  • Revision ID: james.westby@ubuntu.com-20030122150051-uihwkdoxf15mi1tn
Tags: upstream-2.2.2
ImportĀ upstreamĀ versionĀ 2.2.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef _AWE_SUP_H
 
2
#define _AWE_SUP_H
 
3
 
 
4
#ifdef HAVE_CONFIG_H
 
5
#include <config.h>
 
6
#endif
 
7
 
 
8
#ifdef HAVE_AWE_VOICE_H
 
9
#include <awe_voice.h>
 
10
#define HAVE_AWE32
 
11
#elif defined(HAVE_SYS_AWE_VOICE_H)
 
12
#include <sys/awe_voice.h>
 
13
#define HAVE_AWE32
 
14
#elif defined(HAVE_LINUX_AWE_VOICE_H)
 
15
#include <linux/awe_voice.h>
 
16
#define HAVE_AWE32
 
17
#elif defined(HAVE__USR_SRC_SYS_I386_ISA_SOUND_AWE_VOICE_H)
 
18
#include "/usr/src/sys/i386/isa/sound/awe_voice.h"
 
19
#define HAVE_AWE32
 
20
#elif defined(HAVE__USR_SRC_SYS_GNU_I386_ISA_SOUND_AWE_VOICE_H)
 
21
#include "/usr/src/sys/gnu/i386/isa/sound/awe_voice.h"
 
22
#define HAVE_AWE32
 
23
#endif
 
24
 
 
25
#ifndef AWE_SET_CHANNEL_MODE
 
26
// AWE32 doesn't work if AWE_SET_CHANNEL_MODE isn't defined.
 
27
#undef HAVE_AWE32
 
28
#endif
 
29
 
 
30
#endif