Warnings cleanup.

git-svn-id: svn://svn.code.sf.net/p/sc2/code/trunk@1621 8092fc87-c524-0410-9efc-e669fe64eaf9
This commit is contained in:
meep-eep
2005-04-08 19:15:33 +00:00
parent 01375dab2f
commit 9aef15f5d0
2 changed files with 14 additions and 2 deletions
@@ -23,6 +23,8 @@
#include "audiodrv_openal.h"
#include "libs/tasklib.h"
#include <stdlib.h>
ALCcontext *alcContext = NULL;
ALCdevice *alcDevice = NULL;
@@ -33,8 +33,18 @@
#else
# include <AL/al.h>
# include <AL/alc.h>
# define AL_INVALID_ENUM AL_ILLEGAL_ENUM
# define AL_INVALID_OPERATION AL_ILLEGAL_COMMAND
/* XXX: In new versions of OpenAL the defines AL_INVALID_ENUM and
* AL_INVALID_OPERATION are already defined.
* As you can only get OpenAL from CVS (or a 3rd party package),
* we can probably remove these defines altogether in the near
* future.
*/
# ifndef AL_INVALID_ENUM
# define AL_INVALID_ENUM AL_ILLEGAL_ENUM
# endif
# ifndef AL_INVALID_OPERATION
# define AL_INVALID_OPERATION AL_ILLEGAL_COMMAND
# endif
# define AL_DATA 0x2005
#endif