* Updated AL headers

* Added a Makefile option USE_LOCAL_HEADERS which can be disabled to use system
  headers if desired
This commit is contained in:
Tim Angus 2005-12-01 20:53:28 +00:00
parent acb810b972
commit 1b314e8934
12 changed files with 690 additions and 793 deletions

View file

@ -32,8 +32,14 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
#define AL_NO_PROTOTYPES
#define ALC_NO_PROTOTYPES
#endif
#if USE_LOCAL_HEADERS
#include "../AL/al.h"
#include "../AL/alc.h"
#else
#include <AL/al.h>
#include <AL/alc.h>
#endif
#if USE_OPENAL_DLOPEN
extern LPALENABLE qalEnable;