2
0
mirror of https://github.com/ValveSoftware/Proton synced 2025-08-31 14:45:23 +00:00

lsteamclient: Consistently use the computed return type.

CW-Bug-Id: #22729
This commit is contained in:
Rémi Bernon
2023-09-23 22:07:08 +02:00
parent 5ec1df2911
commit d46fb7c78a
135 changed files with 1818 additions and 1812 deletions

View File

@@ -90,7 +90,7 @@ int cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetAchievementIcon(vo
const char * cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetAchievementDisplayAttribute(void *linux_side, const char *pchName, const char *pchKey)
{
const char * _ret;
const char *_ret;
_ret = ((ISteamUserStats*)linux_side)->GetAchievementDisplayAttribute((const char *)pchName, (const char *)pchKey);
return (_ret);
}
@@ -153,7 +153,7 @@ SteamAPICall_t cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_FindLeader
const char * cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION005_GetLeaderboardName(void *linux_side, SteamLeaderboard_t hSteamLeaderboard)
{
const char * _ret;
const char *_ret;
_ret = ((ISteamUserStats*)linux_side)->GetLeaderboardName((SteamLeaderboard_t)hSteamLeaderboard);
return (_ret);
}