2018-01-18 10:24:05 -06:00
|
|
|
#include "steam_defs.h"
|
2019-08-16 09:00:45 -05:00
|
|
|
#pragma push_macro("__cdecl")
|
|
|
|
#undef __cdecl
|
2023-05-02 10:43:23 +02:00
|
|
|
#define __cdecl
|
2018-01-18 10:24:05 -06:00
|
|
|
#include "steamworks_sdk_103/steam_api.h"
|
2019-08-16 09:00:45 -05:00
|
|
|
#pragma pop_macro("__cdecl")
|
2018-10-30 14:06:46 -05:00
|
|
|
#include "steamclient_private.h"
|
2018-01-18 10:24:05 -06:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
2019-02-26 09:05:29 -06:00
|
|
|
#define SDKVER_103
|
|
|
|
#include "struct_converters.h"
|
|
|
|
#include "cppISteamApps_STEAMAPPS_INTERFACE_VERSION002.h"
|
2018-01-18 10:24:05 -06:00
|
|
|
bool cppISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsSubscribed(void *linux_side)
|
|
|
|
{
|
|
|
|
return ((ISteamApps*)linux_side)->BIsSubscribed();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool cppISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsLowViolence(void *linux_side)
|
|
|
|
{
|
|
|
|
return ((ISteamApps*)linux_side)->BIsLowViolence();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool cppISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsCybercafe(void *linux_side)
|
|
|
|
{
|
|
|
|
return ((ISteamApps*)linux_side)->BIsCybercafe();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool cppISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsVACBanned(void *linux_side)
|
|
|
|
{
|
|
|
|
return ((ISteamApps*)linux_side)->BIsVACBanned();
|
|
|
|
}
|
|
|
|
|
|
|
|
const char * cppISteamApps_STEAMAPPS_INTERFACE_VERSION002_GetCurrentGameLanguage(void *linux_side)
|
|
|
|
{
|
|
|
|
return ((ISteamApps*)linux_side)->GetCurrentGameLanguage();
|
|
|
|
}
|
|
|
|
|
|
|
|
const char * cppISteamApps_STEAMAPPS_INTERFACE_VERSION002_GetAvailableGameLanguages(void *linux_side)
|
|
|
|
{
|
|
|
|
return ((ISteamApps*)linux_side)->GetAvailableGameLanguages();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool cppISteamApps_STEAMAPPS_INTERFACE_VERSION002_BIsSubscribedApp(void *linux_side, AppId_t appID)
|
|
|
|
{
|
|
|
|
return ((ISteamApps*)linux_side)->BIsSubscribedApp((AppId_t)appID);
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|