mirror of
https://git.suyu.dev/suyu/Yucom.git
synced 2025-12-24 16:24:31 +01:00
lsteamclient: Consistently use the computed return type.
CW-Bug-Id: #22729
This commit is contained in:
parent
ef91c04a22
commit
8d78cb5107
135 changed files with 1818 additions and 1812 deletions
|
|
@ -98,7 +98,7 @@ int cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementIcon(vo
|
|||
|
||||
const char * cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_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);
|
||||
}
|
||||
|
|
@ -119,7 +119,7 @@ uint32 cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetNumAchievements
|
|||
|
||||
const char * cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetAchievementName(void *linux_side, uint32 iAchievement)
|
||||
{
|
||||
const char * _ret;
|
||||
const char *_ret;
|
||||
_ret = ((ISteamUserStats*)linux_side)->GetAchievementName((uint32)iAchievement);
|
||||
return (_ret);
|
||||
}
|
||||
|
|
@ -182,7 +182,7 @@ SteamAPICall_t cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_FindLeader
|
|||
|
||||
const char * cppISteamUserStats_STEAMUSERSTATS_INTERFACE_VERSION012_GetLeaderboardName(void *linux_side, SteamLeaderboard_t hSteamLeaderboard)
|
||||
{
|
||||
const char * _ret;
|
||||
const char *_ret;
|
||||
_ret = ((ISteamUserStats*)linux_side)->GetLeaderboardName((SteamLeaderboard_t)hSteamLeaderboard);
|
||||
return (_ret);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue