Check some float property values for being finite
[openal-soft.git] / alc / backends / wasapi.h
blobf3cb854136585848eea041bf0acd588b37b47c85
1 #ifndef BACKENDS_WASAPI_H
2 #define BACKENDS_WASAPI_H
4 #include "base.h"
6 struct WasapiBackendFactory final : public BackendFactory {
7 public:
8 auto init() -> bool final;
10 auto querySupport(BackendType type) -> bool final;
12 auto queryEventSupport(alc::EventType eventType, BackendType type) -> alc::EventSupport final;
14 auto enumerate(BackendType type) -> std::vector<std::string> final;
16 auto createBackend(DeviceBase *device, BackendType type) -> BackendPtr final;
18 static auto getFactory() -> BackendFactory&;
21 #endif /* BACKENDS_WASAPI_H */