mirror of
https://git.suyu.dev/suyu/Yucom.git
synced 2025-12-27 01:34:34 +01:00
parent
56b828c365
commit
536b237731
233 changed files with 29134 additions and 10252 deletions
|
|
@ -13,62 +13,86 @@ extern "C" {
|
|||
#include "cppISteamApps_STEAMAPPS_INTERFACE_VERSION004.h"
|
||||
bool cppISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsSubscribed(void *linux_side)
|
||||
{
|
||||
return ((ISteamApps*)linux_side)->BIsSubscribed();
|
||||
bool _ret;
|
||||
_ret = ((ISteamApps*)linux_side)->BIsSubscribed();
|
||||
return (_ret);
|
||||
}
|
||||
|
||||
bool cppISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsLowViolence(void *linux_side)
|
||||
{
|
||||
return ((ISteamApps*)linux_side)->BIsLowViolence();
|
||||
bool _ret;
|
||||
_ret = ((ISteamApps*)linux_side)->BIsLowViolence();
|
||||
return (_ret);
|
||||
}
|
||||
|
||||
bool cppISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsCybercafe(void *linux_side)
|
||||
{
|
||||
return ((ISteamApps*)linux_side)->BIsCybercafe();
|
||||
bool _ret;
|
||||
_ret = ((ISteamApps*)linux_side)->BIsCybercafe();
|
||||
return (_ret);
|
||||
}
|
||||
|
||||
bool cppISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsVACBanned(void *linux_side)
|
||||
{
|
||||
return ((ISteamApps*)linux_side)->BIsVACBanned();
|
||||
bool _ret;
|
||||
_ret = ((ISteamApps*)linux_side)->BIsVACBanned();
|
||||
return (_ret);
|
||||
}
|
||||
|
||||
const char * cppISteamApps_STEAMAPPS_INTERFACE_VERSION004_GetCurrentGameLanguage(void *linux_side)
|
||||
{
|
||||
return ((ISteamApps*)linux_side)->GetCurrentGameLanguage();
|
||||
const char * _ret;
|
||||
_ret = ((ISteamApps*)linux_side)->GetCurrentGameLanguage();
|
||||
return (_ret);
|
||||
}
|
||||
|
||||
const char * cppISteamApps_STEAMAPPS_INTERFACE_VERSION004_GetAvailableGameLanguages(void *linux_side)
|
||||
{
|
||||
return ((ISteamApps*)linux_side)->GetAvailableGameLanguages();
|
||||
const char * _ret;
|
||||
_ret = ((ISteamApps*)linux_side)->GetAvailableGameLanguages();
|
||||
return (_ret);
|
||||
}
|
||||
|
||||
bool cppISteamApps_STEAMAPPS_INTERFACE_VERSION004_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_VERSION004_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);
|
||||
}
|
||||
|
||||
uint32 cppISteamApps_STEAMAPPS_INTERFACE_VERSION004_GetEarliestPurchaseUnixTime(void *linux_side, AppId_t nAppID)
|
||||
{
|
||||
return ((ISteamApps*)linux_side)->GetEarliestPurchaseUnixTime((AppId_t)nAppID);
|
||||
uint32 _ret;
|
||||
_ret = ((ISteamApps*)linux_side)->GetEarliestPurchaseUnixTime((AppId_t)nAppID);
|
||||
return (_ret);
|
||||
}
|
||||
|
||||
bool cppISteamApps_STEAMAPPS_INTERFACE_VERSION004_BIsSubscribedFromFreeWeekend(void *linux_side)
|
||||
{
|
||||
return ((ISteamApps*)linux_side)->BIsSubscribedFromFreeWeekend();
|
||||
bool _ret;
|
||||
_ret = ((ISteamApps*)linux_side)->BIsSubscribedFromFreeWeekend();
|
||||
return (_ret);
|
||||
}
|
||||
|
||||
int cppISteamApps_STEAMAPPS_INTERFACE_VERSION004_GetDLCCount(void *linux_side)
|
||||
{
|
||||
return ((ISteamApps*)linux_side)->GetDLCCount();
|
||||
int _ret;
|
||||
_ret = ((ISteamApps*)linux_side)->GetDLCCount();
|
||||
return (_ret);
|
||||
}
|
||||
|
||||
bool cppISteamApps_STEAMAPPS_INTERFACE_VERSION004_BGetDLCDataByIndex(void *linux_side, int iDLC, AppId_t *pAppID, bool *pbAvailable, char *pchName, int cchNameBufferSize)
|
||||
{
|
||||
return ((ISteamApps*)linux_side)->BGetDLCDataByIndex((int)iDLC, (AppId_t *)pAppID, (bool *)pbAvailable, (char *)pchName, (int)cchNameBufferSize);
|
||||
bool _ret;
|
||||
_ret = ((ISteamApps*)linux_side)->BGetDLCDataByIndex((int)iDLC, (AppId_t *)pAppID, (bool *)pbAvailable, (char *)pchName, (int)cchNameBufferSize);
|
||||
return (_ret);
|
||||
}
|
||||
|
||||
void cppISteamApps_STEAMAPPS_INTERFACE_VERSION004_InstallDLC(void *linux_side, AppId_t nAppID)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue