Rename OpenAL-soft "Alc" to "alc"

This commit is contained in:
Miku AuahDark
2022-05-22 13:40:18 +08:00
parent 0298822ab9
commit be81e424cb
64 changed files with 0 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
#ifndef BACKENDS_OSS_H
#define BACKENDS_OSS_H
#include "base.h"
struct OSSBackendFactory final : public BackendFactory {
public:
bool init() override;
bool querySupport(BackendType type) override;
std::string probe(BackendType type) override;
BackendPtr createBackend(DeviceBase *device, BackendType type) override;
static BackendFactory &getFactory();
};
#endif /* BACKENDS_OSS_H */