summary refs log tree commit diff
path: root/src/Support.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/Support.h')
-rw-r--r--src/Support.h10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/Support.h b/src/Support.h
index 99e264e..633a51a 100644
--- a/src/Support.h
+++ b/src/Support.h
@@ -5,7 +5,6 @@
 #include <unistd.h>
 
 #include <AL/al.h>
-#include <AL/alut.h>
 
 #define STUB_FUNCTION fprintf(stderr,"STUB: %s at " __FILE__ ", line %d, thread %d\n",__FUNCTION__,__LINE__,getpid())
 
@@ -40,19 +39,10 @@ void GetMouse(Point *p);
 void GetMouseRel(Point *p);
 void GetKeys(unsigned long *keys);
 int Button(void);
-#ifdef NOOGG
-void alutLoadWAVFile_CFH(char *filename, ALenum *format, void **wave,
-	unsigned int *size, ALsizei *freq);
-void alutUnloadWAV_CFH(ALenum format, void *wave, unsigned int size,
-	ALsizei freq);
-#define alutLoadWAVFile alutLoadWAVFile_CFH
-#define alutUnloadWAV alutUnloadWAV_CFH
-#else
 void LoadOGG_CFH(char *filename, ALenum *format, void **wave,
 	unsigned int *size, ALsizei *freq);
 void FreeOGG(ALenum format, void *wave, unsigned int size,
 	ALsizei freq);
-#endif
 
 FILE *cfh_fopen(const char *filename, const char *mode);