mirror of
https://git.suyu.dev/suyu/Yucom.git
synced 2025-12-26 01:04:34 +01:00
parent
d0230e1d4e
commit
9f71e16ff9
233 changed files with 29134 additions and 10252 deletions
|
|
@ -13,37 +13,51 @@ extern "C" {
|
|||
#include "cppISteamApps_STEAMAPPS_INTERFACE_VERSION002.h"
|
||||
bool cppISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsSubscribed(void *linux_side)
|
||||
{
|
||||
return ((ISteamApps*)linux_side)->BIsSubscribed();
|
||||
bool _ret;
|
||||
_ret = ((ISteamApps*)linux_side)->BIsSubscribed();
|
||||
return (_ret);
|
||||
}
|
||||
|
||||
bool cppISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsLowViolence(void *linux_side)
|
||||
{
|
||||
return ((ISteamApps*)linux_side)->BIsLowViolence();
|
||||
bool _ret;
|
||||
_ret = ((ISteamApps*)linux_side)->BIsLowViolence();
|
||||
return (_ret);
|
||||
}
|
||||
|
||||
bool cppISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsCybercafe(void *linux_side)
|
||||
{
|
||||
return ((ISteamApps*)linux_side)->BIsCybercafe();
|
||||
bool _ret;
|
||||
_ret = ((ISteamApps*)linux_side)->BIsCybercafe();
|
||||
return (_ret);
|
||||
}
|
||||
|
||||
bool cppISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsVACBanned(void *linux_side)
|
||||
{
|
||||
return ((ISteamApps*)linux_side)->BIsVACBanned();
|
||||
bool _ret;
|
||||
_ret = ((ISteamApps*)linux_side)->BIsVACBanned();
|
||||
return (_ret);
|
||||
}
|
||||
|
||||
const char * cppISteamApps_STEAMAPPS_INTERFACE_VERSION002_GetCurrentGameLanguage(void *linux_side)
|
||||
{
|
||||
return ((ISteamApps*)linux_side)->GetCurrentGameLanguage();
|
||||
const char * _ret;
|
||||
_ret = ((ISteamApps*)linux_side)->GetCurrentGameLanguage();
|
||||
return (_ret);
|
||||
}
|
||||
|
||||
const char * cppISteamApps_STEAMAPPS_INTERFACE_VERSION002_GetAvailableGameLanguages(void *linux_side)
|
||||
{
|
||||
return ((ISteamApps*)linux_side)->GetAvailableGameLanguages();
|
||||
const char * _ret;
|
||||
_ret = ((ISteamApps*)linux_side)->GetAvailableGameLanguages();
|
||||
return (_ret);
|
||||
}
|
||||
|
||||
bool cppISteamApps_STEAMAPPS_INTERFACE_VERSION002_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);
|
||||
}
|
||||
|
||||
#ifdef __cplusplus
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue