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 committed by Arkadiusz Hiler
parent ef91c04a22
commit 8d78cb5107
135 changed files with 1818 additions and 1812 deletions

View file

@ -89,7 +89,7 @@ CSteamID cppISteamMatchmaking_SteamMatchMaking002_GetLobbyMemberByIndex(void *li
const char * cppISteamMatchmaking_SteamMatchMaking002_GetLobbyData(void *linux_side, CSteamID steamIDLobby, const char *pchKey)
{
const char * _ret;
const char *_ret;
_ret = ((ISteamMatchmaking*)linux_side)->GetLobbyData((CSteamID)steamIDLobby, (const char *)pchKey);
return (_ret);
}
@ -103,7 +103,7 @@ bool cppISteamMatchmaking_SteamMatchMaking002_SetLobbyData(void *linux_side, CSt
const char * cppISteamMatchmaking_SteamMatchMaking002_GetLobbyMemberData(void *linux_side, CSteamID steamIDLobby, CSteamID steamIDUser, const char *pchKey)
{
const char * _ret;
const char *_ret;
_ret = ((ISteamMatchmaking*)linux_side)->GetLobbyMemberData((CSteamID)steamIDLobby, (CSteamID)steamIDUser, (const char *)pchKey);
return (_ret);
}