🛠️🐜 Antkeeper superbuild with dependencies included https://antkeeper.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
419 B

  1. #ifndef BACKENDS_WINMM_H
  2. #define BACKENDS_WINMM_H
  3. #include "base.h"
  4. struct WinMMBackendFactory final : public BackendFactory {
  5. public:
  6. bool init() override;
  7. bool querySupport(BackendType type) override;
  8. std::string probe(BackendType type) override;
  9. BackendPtr createBackend(DeviceBase *device, BackendType type) override;
  10. static BackendFactory &getFactory();
  11. };
  12. #endif /* BACKENDS_WINMM_H */