mirror of
https://git.suyu.dev/suyu/Yucom.git
synced 2025-12-29 18:54:33 +01:00
lsteamclient: Consistently use the computed return type.
CW-Bug-Id: #22729
This commit is contained in:
parent
19c7fb2549
commit
3479873c06
135 changed files with 1818 additions and 1812 deletions
|
|
@ -13,7 +13,7 @@ extern "C" {
|
|||
#include "cppISteamFriends_SteamFriends001.h"
|
||||
const char * cppISteamFriends_SteamFriends001_GetPersonaName(void *linux_side)
|
||||
{
|
||||
const char * _ret;
|
||||
const char *_ret;
|
||||
_ret = ((ISteamFriends*)linux_side)->GetPersonaName();
|
||||
return (_ret);
|
||||
}
|
||||
|
|
@ -79,7 +79,7 @@ bool cppISteamFriends_SteamFriends001_Deprecated_GetFriendGamePlayed(void *linux
|
|||
|
||||
const char * cppISteamFriends_SteamFriends001_GetFriendPersonaName(void *linux_side, CSteamID steamIDFriend)
|
||||
{
|
||||
const char * _ret;
|
||||
const char *_ret;
|
||||
_ret = ((ISteamFriends*)linux_side)->GetFriendPersonaName((CSteamID)steamIDFriend);
|
||||
return (_ret);
|
||||
}
|
||||
|
|
@ -117,14 +117,14 @@ void cppISteamFriends_SteamFriends001_SetFriendRegValue(void *linux_side, CSteam
|
|||
|
||||
const char * cppISteamFriends_SteamFriends001_GetFriendRegValue(void *linux_side, CSteamID steamIDFriend, const char *pchKey)
|
||||
{
|
||||
const char * _ret;
|
||||
const char *_ret;
|
||||
_ret = ((ISteamFriends*)linux_side)->GetFriendRegValue((CSteamID)steamIDFriend, (const char *)pchKey);
|
||||
return (_ret);
|
||||
}
|
||||
|
||||
const char * cppISteamFriends_SteamFriends001_GetFriendPersonaNameHistory(void *linux_side, CSteamID steamIDFriend, int iPersonaName)
|
||||
{
|
||||
const char * _ret;
|
||||
const char *_ret;
|
||||
_ret = ((ISteamFriends*)linux_side)->GetFriendPersonaNameHistory((CSteamID)steamIDFriend, (int)iPersonaName);
|
||||
return (_ret);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue