Don't return a large-ish array on the stack
[openal-soft.git] / alc / backends / null.h
blob7048cad6f09abdf1c16de45152251882fbbacf57
1 #ifndef BACKENDS_NULL_H
2 #define BACKENDS_NULL_H
4 #include "base.h"
6 struct NullBackendFactory final : public BackendFactory {
7 public:
8 bool init() override;
10 bool querySupport(BackendType type) override;
12 std::string probe(BackendType type) override;
14 BackendPtr createBackend(DeviceBase *device, BackendType type) override;
16 static BackendFactory &getFactory();
19 #endif /* BACKENDS_NULL_H */