mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-11-23 04:53:08 +00:00
38792f2c93
* codespell across project Co-authored-by: あく <alleteam@gmail.com>
12 lines
261 B
C
12 lines
261 B
C
#pragma once
|
|
|
|
/* Common interface between a plugin and host application */
|
|
|
|
#define PLUGIN_APP_ID "example_plugins_advanced"
|
|
#define PLUGIN_API_VERSION 1
|
|
|
|
typedef struct {
|
|
const char* name;
|
|
void (*method1)(int);
|
|
void (*method2)();
|
|
} AdvancedPlugin;
|