targets.h 370 B

12345678910111213141516171819202122
  1. /*
  2. * Squeezelite for esp32
  3. *
  4. * (c) Sebastien 2019
  5. * Philippe G. 2019, philippe_44@outlook.com
  6. *
  7. * This software is released under the MIT License.
  8. * https://opensource.org/licenses/MIT
  9. *
  10. */
  11. #pragma once
  12. #include "stddef.h"
  13. #include "stdbool.h"
  14. struct target_s {
  15. char *model;
  16. bool (*init)(void);
  17. };
  18. extern const struct target_s target_muse;