lsteamclient: Wrap parameters in structures.

CW-Bug-Id: #22729
This commit is contained in:
Rémi Bernon 2023-09-27 14:34:23 +02:00 committed by Arkadiusz Hiler
parent e4d75b2fb0
commit 6b21c32d2a
439 changed files with 109952 additions and 43685 deletions

View file

@ -11,53 +11,39 @@ extern "C" {
#define SDKVER_103
#include "struct_converters.h"
#include "cppISteamApps_STEAMAPPS_INTERFACE_VERSION002.h"
bool cppISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsSubscribed(void *linux_side)
void cppISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsSubscribed( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsSubscribed_params *params )
{
bool _ret;
_ret = ((ISteamApps*)linux_side)->BIsSubscribed();
return (_ret);
params->_ret = ((ISteamApps*)params->linux_side)->BIsSubscribed( );
}
bool cppISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsLowViolence(void *linux_side)
void cppISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsLowViolence( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsLowViolence_params *params )
{
bool _ret;
_ret = ((ISteamApps*)linux_side)->BIsLowViolence();
return (_ret);
params->_ret = ((ISteamApps*)params->linux_side)->BIsLowViolence( );
}
bool cppISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsCybercafe(void *linux_side)
void cppISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsCybercafe( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsCybercafe_params *params )
{
bool _ret;
_ret = ((ISteamApps*)linux_side)->BIsCybercafe();
return (_ret);
params->_ret = ((ISteamApps*)params->linux_side)->BIsCybercafe( );
}
bool cppISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsVACBanned(void *linux_side)
void cppISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsVACBanned( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsVACBanned_params *params )
{
bool _ret;
_ret = ((ISteamApps*)linux_side)->BIsVACBanned();
return (_ret);
params->_ret = ((ISteamApps*)params->linux_side)->BIsVACBanned( );
}
const char * cppISteamApps_STEAMAPPS_INTERFACE_VERSION002_GetCurrentGameLanguage(void *linux_side)
void cppISteamApps_STEAMAPPS_INTERFACE_VERSION002_GetCurrentGameLanguage( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION002_GetCurrentGameLanguage_params *params )
{
const char *_ret;
_ret = ((ISteamApps*)linux_side)->GetCurrentGameLanguage();
return (_ret);
params->_ret = ((ISteamApps*)params->linux_side)->GetCurrentGameLanguage( );
}
const char * cppISteamApps_STEAMAPPS_INTERFACE_VERSION002_GetAvailableGameLanguages(void *linux_side)
void cppISteamApps_STEAMAPPS_INTERFACE_VERSION002_GetAvailableGameLanguages( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION002_GetAvailableGameLanguages_params *params )
{
const char *_ret;
_ret = ((ISteamApps*)linux_side)->GetAvailableGameLanguages();
return (_ret);
params->_ret = ((ISteamApps*)params->linux_side)->GetAvailableGameLanguages( );
}
bool cppISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsSubscribedApp(void *linux_side, AppId_t appID)
void cppISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsSubscribedApp( struct cppISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsSubscribedApp_params *params )
{
bool _ret;
_ret = ((ISteamApps*)linux_side)->BIsSubscribedApp((AppId_t)appID);
return (_ret);
params->_ret = ((ISteamApps*)params->linux_side)->BIsSubscribedApp( (AppId_t)params->appID );
}
#ifdef __cplusplus