mirror of
https://github.com/wiiu-env/libwupsbackend.git
synced 2024-11-22 09:49:18 +01:00
Fix compiling with latest wut
This commit is contained in:
parent
a2d91bb6aa
commit
6a3d016d70
@ -61,22 +61,22 @@ PluginBackendApiErrorType WUPSBackend_InitLibrary() {
|
|||||||
return PLUGIN_BACKEND_API_ERROR_MODULE_NOT_FOUND;
|
return PLUGIN_BACKEND_API_ERROR_MODULE_NOT_FOUND;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (OSDynLoad_FindExport(sModuleHandle, FALSE, "WUPSGetAPIVersion", (void **) &sWUPSGetAPIVersion) != OS_DYNLOAD_OK) {
|
if (OSDynLoad_FindExport(sModuleHandle, OS_DYNLOAD_EXPORT_FUNC, "WUPSGetAPIVersion", (void **) &sWUPSGetAPIVersion) != OS_DYNLOAD_OK) {
|
||||||
DEBUG_FUNCTION_LINE_ERR("FindExport WUPSGetAPIVersion failed.");
|
DEBUG_FUNCTION_LINE_ERR("FindExport WUPSGetAPIVersion failed.");
|
||||||
return PLUGIN_BACKEND_API_ERROR_MODULE_MISSING_EXPORT;
|
return PLUGIN_BACKEND_API_ERROR_MODULE_MISSING_EXPORT;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (OSDynLoad_FindExport(sModuleHandle, FALSE, "WUPSWillReloadPluginsOnNextLaunch", (void **) &sWUPSWillReloadPluginsOnNextLaunch) != OS_DYNLOAD_OK) {
|
if (OSDynLoad_FindExport(sModuleHandle, OS_DYNLOAD_EXPORT_FUNC, "WUPSWillReloadPluginsOnNextLaunch", (void **) &sWUPSWillReloadPluginsOnNextLaunch) != OS_DYNLOAD_OK) {
|
||||||
DEBUG_FUNCTION_LINE_WARN("FindExport WUPSWillReloadPluginsOnNextLaunch failed.");
|
DEBUG_FUNCTION_LINE_WARN("FindExport WUPSWillReloadPluginsOnNextLaunch failed.");
|
||||||
sWUPSWillReloadPluginsOnNextLaunch = nullptr;
|
sWUPSWillReloadPluginsOnNextLaunch = nullptr;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (OSDynLoad_FindExport(sModuleHandle, FALSE, "WUPSGetNumberOfLoadedPlugins", (void **) &sWUPSGetNumberOfLoadedPlugins) != OS_DYNLOAD_OK) {
|
if (OSDynLoad_FindExport(sModuleHandle, OS_DYNLOAD_EXPORT_FUNC, "WUPSGetNumberOfLoadedPlugins", (void **) &sWUPSGetNumberOfLoadedPlugins) != OS_DYNLOAD_OK) {
|
||||||
DEBUG_FUNCTION_LINE_WARN("FindExport WUPSGetNumberOfLoadedPlugins failed.");
|
DEBUG_FUNCTION_LINE_WARN("FindExport WUPSGetNumberOfLoadedPlugins failed.");
|
||||||
sWUPSGetNumberOfLoadedPlugins = nullptr;
|
sWUPSGetNumberOfLoadedPlugins = nullptr;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (OSDynLoad_FindExport(sModuleHandle, FALSE, "WUPSGetSectionMemoryAddresses", (void **) &sWUPSGetSectionMemoryAddresses) != OS_DYNLOAD_OK) {
|
if (OSDynLoad_FindExport(sModuleHandle, OS_DYNLOAD_EXPORT_FUNC, "WUPSGetSectionMemoryAddresses", (void **) &sWUPSGetSectionMemoryAddresses) != OS_DYNLOAD_OK) {
|
||||||
DEBUG_FUNCTION_LINE_WARN("FindExport WUPSGetSectionMemoryAddresses failed.");
|
DEBUG_FUNCTION_LINE_WARN("FindExport WUPSGetSectionMemoryAddresses failed.");
|
||||||
sWUPSGetSectionMemoryAddresses = nullptr;
|
sWUPSGetSectionMemoryAddresses = nullptr;
|
||||||
}
|
}
|
||||||
@ -109,7 +109,7 @@ PluginBackendApiErrorType WUPSBackend_GetApiVersion(WUPSBackendAPIVersion *outVe
|
|||||||
return PLUGIN_BACKEND_API_ERROR_MODULE_NOT_FOUND;
|
return PLUGIN_BACKEND_API_ERROR_MODULE_NOT_FOUND;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (OSDynLoad_FindExport(sModuleHandle, FALSE, "WUPSGetAPIVersion", (void **) &sWUPSGetAPIVersion) != OS_DYNLOAD_OK) {
|
if (OSDynLoad_FindExport(sModuleHandle, OS_DYNLOAD_EXPORT_FUNC, "WUPSGetAPIVersion", (void **) &sWUPSGetAPIVersion) != OS_DYNLOAD_OK) {
|
||||||
DEBUG_FUNCTION_LINE_WARN("FindExport WUPSGetAPIVersion failed.");
|
DEBUG_FUNCTION_LINE_WARN("FindExport WUPSGetAPIVersion failed.");
|
||||||
return PLUGIN_BACKEND_API_ERROR_MODULE_MISSING_EXPORT;
|
return PLUGIN_BACKEND_API_ERROR_MODULE_MISSING_EXPORT;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user