Simplify bsinc filter storage in the filter state
[openal-soft.git] / examples / common / alhelpers.h
blob41a7ce58fe5fd60a2d67b81fad2237e08e7dc4ec
1 #ifndef ALHELPERS_H
2 #define ALHELPERS_H
4 #include "AL/alc.h"
5 #include "AL/al.h"
6 #include "AL/alext.h"
8 #include "threads.h"
10 #ifdef __cplusplus
11 extern "C" {
12 #endif /* __cplusplus */
14 /* Some helper functions to get the name from the format enums. */
15 const char *FormatName(ALenum type);
17 /* Easy device init/deinit functions. InitAL returns 0 on success. */
18 int InitAL(char ***argv, int *argc);
19 void CloseAL(void);
21 #ifdef __cplusplus
23 #endif /* __cplusplus */
25 #endif /* ALHELPERS_H */