Remove redundant void argument list in function def
[openal-soft.git] / OpenAL32 / Include / sample_cvt.h
bloba3b53d44ac09c45ccb102ce99438e97797da2a99
1 #ifndef SAMPLE_CVT_H
2 #define SAMPLE_CVT_H
4 #include "AL/al.h"
5 #include "alBuffer.h"
7 #ifdef __cplusplus
8 extern "C" {
9 #endif
11 extern const ALshort muLawDecompressionTable[256];
12 extern const ALshort aLawDecompressionTable[256];
14 void Convert_ALshort_ALima4(ALshort *dst, const ALubyte *src, ALsizei numchans, ALsizei len,
15 ALsizei align);
16 void Convert_ALshort_ALmsadpcm(ALshort *dst, const ALubyte *src, ALsizei numchans, ALsizei len,
17 ALsizei align);
19 #ifdef __cplusplus
20 } // extern "C"
21 #endif
23 #endif /* SAMPLE_CVT_H */