axmol/thirdparty/openal/alc/backends/wave.h

20 lines
415 B
C
Raw Normal View History

#ifndef BACKENDS_WAVE_H
#define BACKENDS_WAVE_H
2021-05-14 10:15:42 +08:00
#include "base.h"
struct WaveBackendFactory final : public BackendFactory {
public:
bool init() override;
bool querySupport(BackendType type) override;
std::string probe(BackendType type) override;
2021-05-14 10:15:42 +08:00
BackendPtr createBackend(DeviceBase *device, BackendType type) override;
static BackendFactory &getFactory();
};
#endif /* BACKENDS_WAVE_H */