mirror of
https://github.com/wiiu-env/libwuhbutils.git
synced 2024-11-28 05:44:13 +01:00
Fix WUHBUtils_GetVersion
This commit is contained in:
parent
7eda5e5027
commit
08617fd959
@ -7,7 +7,7 @@
|
|||||||
|
|
||||||
static OSDynLoad_Module sModuleHandle = nullptr;
|
static OSDynLoad_Module sModuleHandle = nullptr;
|
||||||
|
|
||||||
static WUHBUtilsVersion (*sWUUGetVersion)() = nullptr;
|
static WUHBUtilsApiErrorType (*sWUUGetVersion)(WUHBUtilsVersion *) = nullptr;
|
||||||
static WUHBUtilsApiErrorType (*sWUUMountBundle)(const char *, const char *, BundleSource, int32_t *) = nullptr;
|
static WUHBUtilsApiErrorType (*sWUUMountBundle)(const char *, const char *, BundleSource, int32_t *) = nullptr;
|
||||||
static WUHBUtilsApiErrorType (*sWUUUnmountBundle)(const char *, int32_t *) = nullptr;
|
static WUHBUtilsApiErrorType (*sWUUUnmountBundle)(const char *, int32_t *) = nullptr;
|
||||||
static WUHBUtilsApiErrorType (*sWUUFileOpen)(const char *, WUHBFileHandle *) = nullptr;
|
static WUHBUtilsApiErrorType (*sWUUFileOpen)(const char *, WUHBFileHandle *) = nullptr;
|
||||||
@ -110,7 +110,7 @@ WUHBUtilsStatus WUHBUtils_DeInitLibrary() {
|
|||||||
return WUHB_UTILS_RESULT_SUCCESS;
|
return WUHB_UTILS_RESULT_SUCCESS;
|
||||||
}
|
}
|
||||||
|
|
||||||
WUHBUtilsStatus GetVersion(WUHBUtilsVersion *);
|
WUHBUtilsApiErrorType GetVersion(WUHBUtilsVersion *);
|
||||||
WUHBUtilsStatus WUHBUtils_GetVersion(WUHBUtilsVersion *outVersion) {
|
WUHBUtilsStatus WUHBUtils_GetVersion(WUHBUtilsVersion *outVersion) {
|
||||||
if (sWUUGetVersion == nullptr) {
|
if (sWUUGetVersion == nullptr) {
|
||||||
if (OSDynLoad_Acquire("homebrew_wuhb_utils", &sModuleHandle) != OS_DYNLOAD_OK) {
|
if (OSDynLoad_Acquire("homebrew_wuhb_utils", &sModuleHandle) != OS_DYNLOAD_OK) {
|
||||||
@ -127,7 +127,11 @@ WUHBUtilsStatus WUHBUtils_GetVersion(WUHBUtilsVersion *outVersion) {
|
|||||||
return WUHB_UTILS_RESULT_INVALID_ARGUMENT;
|
return WUHB_UTILS_RESULT_INVALID_ARGUMENT;
|
||||||
}
|
}
|
||||||
|
|
||||||
return reinterpret_cast<decltype(&GetVersion)>(sWUUGetVersion)(outVersion);
|
auto res = reinterpret_cast<decltype(&GetVersion)>(sWUUGetVersion)(outVersion);
|
||||||
|
if (res == WUHB_UTILS_API_ERROR_NONE) {
|
||||||
|
return WUHB_UTILS_RESULT_SUCCESS;
|
||||||
|
}
|
||||||
|
return res == WUHB_UTILS_API_ERROR_INVALID_ARG ? WUHB_UTILS_RESULT_INVALID_ARGUMENT : WUHB_UTILS_RESULT_UNKNOWN_ERROR;
|
||||||
}
|
}
|
||||||
|
|
||||||
WUHBUtilsApiErrorType MountBundle(const char *, const char *, BundleSource, int32_t *);
|
WUHBUtilsApiErrorType MountBundle(const char *, const char *, BundleSource, int32_t *);
|
||||||
|
Loading…
Reference in New Issue
Block a user