Remove the last remaining uses of althrd_t
[openal-soft.git] / Alc / backends / sdl2.h
blob7f383447ca03bd1f9f6bbcb5d6ed51001af0e10a
1 #ifndef BACKENDS_SDL2_H
2 #define BACKENDS_SDL2_H
4 #include "backends/base.h"
6 struct SDL2BackendFactory final : public BackendFactory {
7 public:
8 bool init() override;
9 void deinit() override;
11 bool querySupport(ALCbackend_Type type) override;
13 void probe(enum DevProbe type, std::string *outnames) override;
15 ALCbackend *createBackend(ALCdevice *device, ALCbackend_Type type) override;
17 static BackendFactory &getFactory();
20 #endif /* BACKENDS_SDL2_H */