2020-05-17 20:26:31 +02:00
|
|
|
/****************************************************************************
|
2022-05-14 12:06:16 +02:00
|
|
|
* Copyright (C) 2019-2022 Maschell
|
2020-05-17 20:26:31 +02:00
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2021-04-07 23:36:30 +02:00
|
|
|
#include "wups_backend/import_defines.h"
|
|
|
|
|
2020-05-17 20:26:31 +02:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2024-03-23 08:11:02 +01:00
|
|
|
extern PluginBackendApiErrorType WUPSLoadAndLinkByDataHandle(const wups_backend_plugin_data_handle *plugin_data_handle_list, uint32_t plugin_data_handle_list_size);
|
2020-05-17 20:26:31 +02:00
|
|
|
|
2024-03-23 08:11:02 +01:00
|
|
|
extern PluginBackendApiErrorType WUPSDeletePluginData(const wups_backend_plugin_data_handle *plugin_data_handle_list, uint32_t plugin_data_handle_list_size);
|
2020-05-17 20:26:31 +02:00
|
|
|
|
2024-03-23 08:11:02 +01:00
|
|
|
extern PluginBackendApiErrorType WUPSLoadPluginAsDataByPath(wups_backend_plugin_data_handle *output, const char *path);
|
2020-05-17 20:26:31 +02:00
|
|
|
|
2024-03-23 08:11:02 +01:00
|
|
|
extern PluginBackendApiErrorType WUPSLoadPluginAsDataByBuffer(wups_backend_plugin_data_handle *output, char *buffer, size_t size);
|
2020-05-17 20:26:31 +02:00
|
|
|
|
2024-03-23 08:11:02 +01:00
|
|
|
extern PluginBackendApiErrorType WUPSGetPluginMetaInformationByPath(wups_backend_plugin_information *output, const char *path);
|
2020-05-17 20:26:31 +02:00
|
|
|
|
2024-03-23 08:11:02 +01:00
|
|
|
extern PluginBackendApiErrorType WUPSGetPluginMetaInformationByBuffer(wups_backend_plugin_information *output, char *buffer, size_t size);
|
2020-05-17 20:26:31 +02:00
|
|
|
|
2024-03-23 08:11:02 +01:00
|
|
|
extern PluginBackendApiErrorType WUPSGetPluginDataForContainerHandles(const wups_backend_plugin_container_handle *plugin_container_handle_list, const wups_backend_plugin_data_handle *plugin_data_list, uint32_t buffer_size);
|
2020-05-17 20:26:31 +02:00
|
|
|
|
2024-03-23 08:11:02 +01:00
|
|
|
extern PluginBackendApiErrorType WUPSGetMetaInformation(const wups_backend_plugin_container_handle *plugin_container_handle_list, wups_backend_plugin_information *plugin_information_list, uint32_t buffer_size);
|
2020-05-17 20:26:31 +02:00
|
|
|
|
2024-03-23 08:11:02 +01:00
|
|
|
extern PluginBackendApiErrorType WUPSGetLoadedPlugins(const wups_backend_plugin_container_handle *io_handles, uint32_t buffer_size, uint32_t *outSize, uint32_t *plugin_information_version);
|
2020-05-17 20:26:31 +02:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|