mirror of
https://github.com/wiiu-env/WUHBUtilsModule.git
synced 2024-11-22 03:19:19 +01:00
Update WUU_GetVersion
This commit is contained in:
parent
b5b7b528cb
commit
c286ff4e6f
@ -137,8 +137,12 @@ WUHBUtilsApiErrorType WUU_GetRPXInfo(const char *path, BundleSource source, WUHB
|
||||
return WUHB_UTILS_API_ERROR_NONE;
|
||||
}
|
||||
|
||||
uint32_t WUU_GetVersion() {
|
||||
return WUHB_UTILS_MODULE_VERSION;
|
||||
WUHBUtilsApiErrorType WUU_GetVersion(WUHBUtilsVersion *outVersion) {
|
||||
if (!outVersion) {
|
||||
return WUHB_UTILS_API_ERROR_INVALID_ARG;
|
||||
}
|
||||
*outVersion = 1;
|
||||
return WUHB_UTILS_API_ERROR_NONE;
|
||||
}
|
||||
|
||||
WUMS_EXPORT_FUNCTION(WUU_MountBundle);
|
||||
|
Loading…
Reference in New Issue
Block a user