10 lines
260 B
C
10 lines
260 B
C
#ifndef SAMPLE_CVT_H
|
|
#define SAMPLE_CVT_H
|
|
|
|
#include "AL/al.h"
|
|
#include "alBuffer.h"
|
|
|
|
void ConvertData(ALvoid *dst, enum UserFmtType dstType, const ALvoid *src, enum UserFmtType srcType, ALsizei numchans, ALsizei len, ALsizei align);
|
|
|
|
#endif /* SAMPLE_CVT_H */
|