mirror of
https://git.suyu.dev/suyu/Yucom.git
synced 2025-12-25 08:44:32 +01:00
parent
56b828c365
commit
536b237731
233 changed files with 29134 additions and 10252 deletions
|
|
@ -13,42 +13,58 @@ extern "C" {
|
|||
#include "cppISteamApps_STEAMAPPS_INTERFACE_VERSION003.h"
|
||||
bool cppISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsSubscribed(void *linux_side)
|
||||
{
|
||||
return ((ISteamApps*)linux_side)->BIsSubscribed();
|
||||
bool _ret;
|
||||
_ret = ((ISteamApps*)linux_side)->BIsSubscribed();
|
||||
return (_ret);
|
||||
}
|
||||
|
||||
bool cppISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsLowViolence(void *linux_side)
|
||||
{
|
||||
return ((ISteamApps*)linux_side)->BIsLowViolence();
|
||||
bool _ret;
|
||||
_ret = ((ISteamApps*)linux_side)->BIsLowViolence();
|
||||
return (_ret);
|
||||
}
|
||||
|
||||
bool cppISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsCybercafe(void *linux_side)
|
||||
{
|
||||
return ((ISteamApps*)linux_side)->BIsCybercafe();
|
||||
bool _ret;
|
||||
_ret = ((ISteamApps*)linux_side)->BIsCybercafe();
|
||||
return (_ret);
|
||||
}
|
||||
|
||||
bool cppISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsVACBanned(void *linux_side)
|
||||
{
|
||||
return ((ISteamApps*)linux_side)->BIsVACBanned();
|
||||
bool _ret;
|
||||
_ret = ((ISteamApps*)linux_side)->BIsVACBanned();
|
||||
return (_ret);
|
||||
}
|
||||
|
||||
const char * cppISteamApps_STEAMAPPS_INTERFACE_VERSION003_GetCurrentGameLanguage(void *linux_side)
|
||||
{
|
||||
return ((ISteamApps*)linux_side)->GetCurrentGameLanguage();
|
||||
const char * _ret;
|
||||
_ret = ((ISteamApps*)linux_side)->GetCurrentGameLanguage();
|
||||
return (_ret);
|
||||
}
|
||||
|
||||
const char * cppISteamApps_STEAMAPPS_INTERFACE_VERSION003_GetAvailableGameLanguages(void *linux_side)
|
||||
{
|
||||
return ((ISteamApps*)linux_side)->GetAvailableGameLanguages();
|
||||
const char * _ret;
|
||||
_ret = ((ISteamApps*)linux_side)->GetAvailableGameLanguages();
|
||||
return (_ret);
|
||||
}
|
||||
|
||||
bool cppISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsSubscribedApp(void *linux_side, AppId_t appID)
|
||||
{
|
||||
return ((ISteamApps*)linux_side)->BIsSubscribedApp((AppId_t)appID);
|
||||
bool _ret;
|
||||
_ret = ((ISteamApps*)linux_side)->BIsSubscribedApp((AppId_t)appID);
|
||||
return (_ret);
|
||||
}
|
||||
|
||||
bool cppISteamApps_STEAMAPPS_INTERFACE_VERSION003_BIsDlcInstalled(void *linux_side, AppId_t appID)
|
||||
{
|
||||
return ((ISteamApps*)linux_side)->BIsDlcInstalled((AppId_t)appID);
|
||||
bool _ret;
|
||||
_ret = ((ISteamApps*)linux_side)->BIsDlcInstalled((AppId_t)appID);
|
||||
return (_ret);
|
||||
}
|
||||
|
||||
#ifdef __cplusplus
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue