mirror of
https://git.suyu.dev/suyu/Yucom.git
synced 2025-12-23 15:54:07 +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
|
|
@ -41,14 +41,14 @@ bool cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsVACBanned(void *linux_side)
|
|||
|
||||
const char * cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetCurrentGameLanguage(void *linux_side)
|
||||
{
|
||||
const char * _ret;
|
||||
const char *_ret;
|
||||
_ret = ((ISteamApps*)linux_side)->GetCurrentGameLanguage();
|
||||
return (_ret);
|
||||
}
|
||||
|
||||
const char * cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetAvailableGameLanguages(void *linux_side)
|
||||
{
|
||||
const char * _ret;
|
||||
const char *_ret;
|
||||
_ret = ((ISteamApps*)linux_side)->GetAvailableGameLanguages();
|
||||
return (_ret);
|
||||
}
|
||||
|
|
@ -154,7 +154,7 @@ CSteamID cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetAppOwner(void *linux_si
|
|||
|
||||
const char * cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetLaunchQueryParam(void *linux_side, const char *pchKey)
|
||||
{
|
||||
const char * _ret;
|
||||
const char *_ret;
|
||||
_ret = ((ISteamApps*)linux_side)->GetLaunchQueryParam((const char *)pchKey);
|
||||
return (_ret);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue