mirror of
https://github.com/LibreSplit/LibreSplit.git
synced 2026-04-28 06:40:23 +00:00
This should allow for plugins to refer to LibreSplit's functions without having to pull in half of the codebase.
12 lines
314 B
C
12 lines
314 B
C
#pragma once
|
|
#include "include/plugins/plugin_utils.h"
|
|
|
|
// Plugin metadata
|
|
extern const char plugin_name[];
|
|
extern const char plugin_description[];
|
|
extern const char plugin_version[];
|
|
extern const char plugin_author[];
|
|
|
|
// Functions to connect host and plugin
|
|
int plug_init(PlugAPI* api);
|
|
int plug_shutdown(void);
|