mirror of
https://git.suyu.dev/suyu/Yucom.git
synced 2025-12-23 15:54:07 +01:00
parent
cc38f0c8c1
commit
f6871a6b73
233 changed files with 29134 additions and 10252 deletions
|
|
@ -13,62 +13,86 @@ extern "C" {
|
|||
#include "cppISteamApps_STEAMAPPS_INTERFACE_VERSION007.h"
|
||||
bool cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsSubscribed(void *linux_side)
|
||||
{
|
||||
return ((ISteamApps*)linux_side)->BIsSubscribed();
|
||||
bool _ret;
|
||||
_ret = ((ISteamApps*)linux_side)->BIsSubscribed();
|
||||
return (_ret);
|
||||
}
|
||||
|
||||
bool cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsLowViolence(void *linux_side)
|
||||
{
|
||||
return ((ISteamApps*)linux_side)->BIsLowViolence();
|
||||
bool _ret;
|
||||
_ret = ((ISteamApps*)linux_side)->BIsLowViolence();
|
||||
return (_ret);
|
||||
}
|
||||
|
||||
bool cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsCybercafe(void *linux_side)
|
||||
{
|
||||
return ((ISteamApps*)linux_side)->BIsCybercafe();
|
||||
bool _ret;
|
||||
_ret = ((ISteamApps*)linux_side)->BIsCybercafe();
|
||||
return (_ret);
|
||||
}
|
||||
|
||||
bool cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsVACBanned(void *linux_side)
|
||||
{
|
||||
return ((ISteamApps*)linux_side)->BIsVACBanned();
|
||||
bool _ret;
|
||||
_ret = ((ISteamApps*)linux_side)->BIsVACBanned();
|
||||
return (_ret);
|
||||
}
|
||||
|
||||
const char * cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetCurrentGameLanguage(void *linux_side)
|
||||
{
|
||||
return ((ISteamApps*)linux_side)->GetCurrentGameLanguage();
|
||||
const char * _ret;
|
||||
_ret = ((ISteamApps*)linux_side)->GetCurrentGameLanguage();
|
||||
return (_ret);
|
||||
}
|
||||
|
||||
const char * cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetAvailableGameLanguages(void *linux_side)
|
||||
{
|
||||
return ((ISteamApps*)linux_side)->GetAvailableGameLanguages();
|
||||
const char * _ret;
|
||||
_ret = ((ISteamApps*)linux_side)->GetAvailableGameLanguages();
|
||||
return (_ret);
|
||||
}
|
||||
|
||||
bool cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_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_VERSION007_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_VERSION007_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_VERSION007_BIsSubscribedFromFreeWeekend(void *linux_side)
|
||||
{
|
||||
return ((ISteamApps*)linux_side)->BIsSubscribedFromFreeWeekend();
|
||||
bool _ret;
|
||||
_ret = ((ISteamApps*)linux_side)->BIsSubscribedFromFreeWeekend();
|
||||
return (_ret);
|
||||
}
|
||||
|
||||
int cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetDLCCount(void *linux_side)
|
||||
{
|
||||
return ((ISteamApps*)linux_side)->GetDLCCount();
|
||||
int _ret;
|
||||
_ret = ((ISteamApps*)linux_side)->GetDLCCount();
|
||||
return (_ret);
|
||||
}
|
||||
|
||||
bool cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_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_VERSION007_InstallDLC(void *linux_side, AppId_t nAppID)
|
||||
|
|
@ -88,47 +112,65 @@ void cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_RequestAppProofOfPurchaseKey(v
|
|||
|
||||
bool cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetCurrentBetaName(void *linux_side, char *pchName, int cchNameBufferSize)
|
||||
{
|
||||
return ((ISteamApps*)linux_side)->GetCurrentBetaName((char *)pchName, (int)cchNameBufferSize);
|
||||
bool _ret;
|
||||
_ret = ((ISteamApps*)linux_side)->GetCurrentBetaName((char *)pchName, (int)cchNameBufferSize);
|
||||
return (_ret);
|
||||
}
|
||||
|
||||
bool cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_MarkContentCorrupt(void *linux_side, bool bMissingFilesOnly)
|
||||
{
|
||||
return ((ISteamApps*)linux_side)->MarkContentCorrupt((bool)bMissingFilesOnly);
|
||||
bool _ret;
|
||||
_ret = ((ISteamApps*)linux_side)->MarkContentCorrupt((bool)bMissingFilesOnly);
|
||||
return (_ret);
|
||||
}
|
||||
|
||||
uint32 cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetInstalledDepots(void *linux_side, AppId_t appID, DepotId_t *pvecDepots, uint32 cMaxDepots)
|
||||
{
|
||||
return ((ISteamApps*)linux_side)->GetInstalledDepots((AppId_t)appID, (DepotId_t *)pvecDepots, (uint32)cMaxDepots);
|
||||
uint32 _ret;
|
||||
_ret = ((ISteamApps*)linux_side)->GetInstalledDepots((AppId_t)appID, (DepotId_t *)pvecDepots, (uint32)cMaxDepots);
|
||||
return (_ret);
|
||||
}
|
||||
|
||||
uint32 cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetAppInstallDir(void *linux_side, AppId_t appID, char *pchFolder, uint32 cchFolderBufferSize)
|
||||
{
|
||||
return ((ISteamApps*)linux_side)->GetAppInstallDir((AppId_t)appID, (char *)pchFolder, (uint32)cchFolderBufferSize);
|
||||
uint32 _ret;
|
||||
_ret = ((ISteamApps*)linux_side)->GetAppInstallDir((AppId_t)appID, (char *)pchFolder, (uint32)cchFolderBufferSize);
|
||||
return (_ret);
|
||||
}
|
||||
|
||||
bool cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_BIsAppInstalled(void *linux_side, AppId_t appID)
|
||||
{
|
||||
return ((ISteamApps*)linux_side)->BIsAppInstalled((AppId_t)appID);
|
||||
bool _ret;
|
||||
_ret = ((ISteamApps*)linux_side)->BIsAppInstalled((AppId_t)appID);
|
||||
return (_ret);
|
||||
}
|
||||
|
||||
CSteamID cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetAppOwner(void *linux_side)
|
||||
{
|
||||
return ((ISteamApps*)linux_side)->GetAppOwner();
|
||||
CSteamID _ret;
|
||||
_ret = ((ISteamApps*)linux_side)->GetAppOwner();
|
||||
return (_ret);
|
||||
}
|
||||
|
||||
const char * cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetLaunchQueryParam(void *linux_side, const char *pchKey)
|
||||
{
|
||||
return ((ISteamApps*)linux_side)->GetLaunchQueryParam((const char *)pchKey);
|
||||
const char * _ret;
|
||||
_ret = ((ISteamApps*)linux_side)->GetLaunchQueryParam((const char *)pchKey);
|
||||
return (_ret);
|
||||
}
|
||||
|
||||
bool cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetDlcDownloadProgress(void *linux_side, AppId_t nAppID, uint64 *punBytesDownloaded, uint64 *punBytesTotal)
|
||||
{
|
||||
return ((ISteamApps*)linux_side)->GetDlcDownloadProgress((AppId_t)nAppID, (uint64 *)punBytesDownloaded, (uint64 *)punBytesTotal);
|
||||
bool _ret;
|
||||
_ret = ((ISteamApps*)linux_side)->GetDlcDownloadProgress((AppId_t)nAppID, (uint64 *)punBytesDownloaded, (uint64 *)punBytesTotal);
|
||||
return (_ret);
|
||||
}
|
||||
|
||||
int cppISteamApps_STEAMAPPS_INTERFACE_VERSION007_GetAppBuildId(void *linux_side)
|
||||
{
|
||||
return ((ISteamApps*)linux_side)->GetAppBuildId();
|
||||
int _ret;
|
||||
_ret = ((ISteamApps*)linux_side)->GetAppBuildId();
|
||||
return (_ret);
|
||||
}
|
||||
|
||||
#ifdef __cplusplus
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue