aboutsummaryrefslogtreecommitdiffstats
path: root/OpenAL32/Include/alExtension.h
blob: 1f33f9af9d8a6007315f098bcfa7f4ca3391391b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#ifndef _AL_EXTENSION_H_
#define _AL_EXTENSION_H_

#include "AL/al.h"
#include "AL/alc.h"

#ifdef __cplusplus
extern "C" {
#endif

typedef struct ALextension_struct
{
	ALchar		*extName;
	ALvoid		*address;
} ALextension;

typedef struct ALfunction_struct
{
	ALchar		*funcName;
	ALvoid		*address;
} ALfunction;

typedef struct ALenum_struct
{
	ALchar		*enumName;
	ALenum		value;
} ALenums;

#ifdef __cplusplus
}
#endif

#endif