Torque3D/Engine/lib/openal-soft/alc/backends/wasapi.h

22 lines
568 B
C
Raw Normal View History

#ifndef BACKENDS_WASAPI_H
#define BACKENDS_WASAPI_H
#include "base.h"
struct WasapiBackendFactory final : public BackendFactory {
public:
2024-06-30 14:35:57 -05:00
auto init() -> bool final;
2024-06-30 14:35:57 -05:00
auto querySupport(BackendType type) -> bool final;
2024-06-30 14:35:57 -05:00
auto queryEventSupport(alc::EventType eventType, BackendType type) -> alc::EventSupport final;
2024-06-30 14:35:57 -05:00
auto enumerate(BackendType type) -> std::vector<std::string> final;
2024-06-30 14:35:57 -05:00
auto createBackend(DeviceBase *device, BackendType type) -> BackendPtr final;
static auto getFactory() -> BackendFactory&;
};
#endif /* BACKENDS_WASAPI_H */