2020-05-17 21:08:13 +02:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <wums.h>
|
2021-04-07 00:23:23 +02:00
|
|
|
#include <wups_backend/import_defines.h>
|
2020-05-17 21:08:13 +02:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2021-04-07 00:23:23 +02:00
|
|
|
PluginBackendApiErrorType WUPSLoadAndLinkByDataHandle(const plugin_data_handle *plugin_data_handle_list, uint32_t plugin_data_handle_list_size);
|
2020-05-17 21:08:13 +02:00
|
|
|
|
2021-04-07 00:23:23 +02:00
|
|
|
PluginBackendApiErrorType WUPSDeletePluginContainer(const plugin_container_handle *handle_list, uint32_t handle_list_size);
|
2020-05-17 21:08:13 +02:00
|
|
|
|
2021-04-07 00:23:23 +02:00
|
|
|
PluginBackendApiErrorType WUPSDeletePluginData(const plugin_data_handle *plugin_data_handle_list, uint32_t plugin_data_handle_list_size);
|
2020-05-17 21:08:13 +02:00
|
|
|
|
2021-04-07 00:23:23 +02:00
|
|
|
PluginBackendApiErrorType WUPSLoadPluginAsData(GetPluginInformationInputType inputType, const char *path, char *buffer, size_t size, plugin_data_handle *out);
|
2020-05-17 21:08:13 +02:00
|
|
|
|
2021-04-07 00:23:23 +02:00
|
|
|
PluginBackendApiErrorType WUPSLoadPluginAsDataByPath(plugin_data_handle *output, const char *path);
|
2020-05-17 21:08:13 +02:00
|
|
|
|
2021-04-07 00:23:23 +02:00
|
|
|
PluginBackendApiErrorType WUPSLoadPluginAsDataByBuffer(plugin_data_handle *output, char *buffer, size_t size);
|
2020-05-17 21:08:13 +02:00
|
|
|
|
2021-04-07 00:23:23 +02:00
|
|
|
PluginBackendApiErrorType WUPSGetPluginMetaInformation(GetPluginInformationInputType inputType, const char *path, char *buffer, size_t size, plugin_information *output);
|
2020-05-17 21:08:13 +02:00
|
|
|
|
2021-04-07 00:23:23 +02:00
|
|
|
PluginBackendApiErrorType WUPSGetPluginMetaInformationByPath(plugin_information *output, const char *path);
|
2020-05-17 21:08:13 +02:00
|
|
|
|
2021-04-07 00:23:23 +02:00
|
|
|
PluginBackendApiErrorType WUPSGetPluginMetaInformationByBuffer(plugin_information *output, char *buffer, size_t size);
|
2020-05-17 21:08:13 +02:00
|
|
|
|
2021-04-07 00:23:23 +02:00
|
|
|
PluginBackendApiErrorType WUPSGetPluginDataForContainerHandles(const plugin_container_handle *plugin_container_handle_list, plugin_data_handle *plugin_data_list, uint32_t buffer_size);
|
2020-05-17 21:08:13 +02:00
|
|
|
|
2021-04-07 00:23:23 +02:00
|
|
|
PluginBackendApiErrorType WUPSGetMetaInformation(const plugin_container_handle *plugin_container_handle_list, plugin_information *plugin_information_list, uint32_t buffer_size);
|
2020-05-17 21:08:13 +02:00
|
|
|
|
2021-10-01 17:25:48 +02:00
|
|
|
PluginBackendApiErrorType WUPSGetLoadedPlugins(plugin_container_handle *io_handles, uint32_t buffer_size, uint32_t *outSize, uint32_t *plugin_information_version);
|
2020-05-17 21:08:13 +02:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|