Flipper Zero Firmware
Loading...
Searching...
No Matches
example_plugins/plugin_interface.h
Go to the documentation of this file.
1
7#pragma once
8
9#define PLUGIN_APP_ID "example_plugins"
10#define PLUGIN_API_VERSION 1
11
12typedef struct {
13 const char* name;
14 int (*method1)(void);
15 int (*method2)(int, int);
Definition example_plugins/plugin_interface.h:12