Reject older versions of PipeWire than built against
[openal-soft.git] / alc / backends / dsound.h
blob787f227a0a205e35b64dd53b36a89bcd0a188811
1 #ifndef BACKENDS_DSOUND_H
2 #define BACKENDS_DSOUND_H
4 #include "base.h"
6 struct DSoundBackendFactory 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_DSOUND_H */