Remove the last remaining uses of althrd_t
[openal-soft.git] / Alc / backends / solaris.h
blobdcb345705e2453905102c149a79785251da31a1b
1 #ifndef BACKENDS_SOLARIS_H
2 #define BACKENDS_SOLARIS_H
4 #include "backends/base.h"
6 struct SolarisBackendFactory 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_SOLARIS_H */