blob: 5cee8db87a85347ee2872dd62021d50431cbaa2c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#ifndef _AL_ERROR_H_
#define _AL_ERROR_H_
#include "AL/al.h"
#ifdef __cplusplus
extern "C" {
#endif
ALvoid alSetError(ALenum errorCode);
#ifdef __cplusplus
}
#endif
#endif
|