plugin_interface.h 253 B

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