plugin_interface.h 260 B

123456789101112
  1. #pragma once
  2. /* Common interface between a plugin and host applicaion */
  3. #define PLUGIN_APP_ID "example_plugins_advanced"
  4. #define PLUGIN_API_VERSION 1
  5. typedef struct {
  6. const char* name;
  7. void (*method1)(int);
  8. void (*method2)();
  9. } AdvancedPlugin;