59 lines
1.3 KiB
C
59 lines
1.3 KiB
C
|
#ifndef SOLANA_PLUGIN__H
|
||
|
#define SOLANA_PLUGIN__H
|
||
|
|
||
|
#include <stdint.h>
|
||
|
|
||
|
#define SOLANA_PLUGIN_VERSION 1
|
||
|
|
||
|
#if defined(_MSC_VER) || defined(__MINGW32__)
|
||
|
#define SOLANA_PLUGIN_EXPORT __declspec(dllexport)
|
||
|
#elif defined(__GNUC__) // also clang
|
||
|
#define SOLANA_PLUGIN_EXPORT __attribute__((visibility("default")))
|
||
|
#else
|
||
|
#error unsupported platform
|
||
|
#endif
|
||
|
|
||
|
#if defined(SOLANA_PLUGIN_HOST)
|
||
|
#define SOLANA_PLUGIN_DECL
|
||
|
#else
|
||
|
#define SOLANA_PLUGIN_DECL SOLANA_PLUGIN_EXPORT
|
||
|
#endif
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
// public plugin stuff here
|
||
|
|
||
|
struct SolanaAPI {
|
||
|
void* (*resolveInstance)(const char* id);
|
||
|
|
||
|
// resolve_all_instances(const char* id)
|
||
|
void (*provideInstance)(const char* id, const char* plugin_name, void* instance);
|
||
|
};
|
||
|
|
||
|
// ---------- info ----------
|
||
|
|
||
|
SOLANA_PLUGIN_EXPORT const char* solana_plugin_get_name(void);
|
||
|
|
||
|
// get the SOLANA_PLUGIN_VERSION the plugin was compiled with
|
||
|
SOLANA_PLUGIN_EXPORT uint32_t solana_plugin_get_version(void);
|
||
|
|
||
|
// ---------- plugin control ----------
|
||
|
|
||
|
// return 0 on success
|
||
|
SOLANA_PLUGIN_EXPORT uint32_t solana_plugin_start(struct SolanaAPI* solana_api);
|
||
|
|
||
|
SOLANA_PLUGIN_EXPORT void solana_plugin_stop(void);
|
||
|
|
||
|
// called periodically
|
||
|
SOLANA_PLUGIN_EXPORT void solana_plugin_tick(float delta);
|
||
|
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif // SOLANA_PLUGIN__H
|
||
|
|