mirror of
https://github.com/sle118/squeezelite-esp32.git
synced 2025-12-09 04:57:06 +03:00
make targets "loadable"
This commit is contained in:
22
components/targets/targets.h
Normal file
22
components/targets/targets.h
Normal file
@@ -0,0 +1,22 @@
|
||||
/*
|
||||
* Squeezelite for esp32
|
||||
*
|
||||
* (c) Sebastien 2019
|
||||
* Philippe G. 2019, philippe_44@outlook.com
|
||||
*
|
||||
* This software is released under the MIT License.
|
||||
* https://opensource.org/licenses/MIT
|
||||
*
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "stddef.h"
|
||||
#include "stdbool.h"
|
||||
|
||||
struct target_s {
|
||||
char *model;
|
||||
bool (*init)(void);
|
||||
};
|
||||
|
||||
extern const struct target_s target_muse;
|
||||
Reference in New Issue
Block a user