Remove the last remaining uses of althrd_t
[openal-soft.git] / Alc / backends / sndio.h
blob38cd276774ff5cb1b7b316f79f919e9314425b4e
1 #ifndef BACKENDS_SNDIO_H
2 #define BACKENDS_SNDIO_H
4 #include "backends/base.h"
6 struct SndIOBackendFactory 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_SNDIO_H */