2018-01-18 10:24:05 -06:00
|
|
|
#include "steam_defs.h"
|
2019-05-13 11:46:07 -05:00
|
|
|
#include "steamworks_sdk_144/steam_api.h"
|
2019-05-16 11:23:30 -05:00
|
|
|
#include "steamworks_sdk_144/steamnetworkingtypes.h"
|
2019-05-13 11:46:07 -05:00
|
|
|
#include "steamworks_sdk_144/isteamparentalsettings.h"
|
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-05-13 11:46:07 -05:00
|
|
|
#define SDKVER_144
|
2019-02-26 09:05:29 -06:00
|
|
|
#include "struct_converters.h"
|
|
|
|
#include "cppISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001.h"
|
2018-01-18 10:24:05 -06:00
|
|
|
bool cppISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsParentalLockEnabled(void *linux_side)
|
|
|
|
{
|
|
|
|
return ((ISteamParentalSettings*)linux_side)->BIsParentalLockEnabled();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool cppISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsParentalLockLocked(void *linux_side)
|
|
|
|
{
|
|
|
|
return ((ISteamParentalSettings*)linux_side)->BIsParentalLockLocked();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool cppISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsAppBlocked(void *linux_side, AppId_t nAppID)
|
|
|
|
{
|
|
|
|
return ((ISteamParentalSettings*)linux_side)->BIsAppBlocked((AppId_t)nAppID);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool cppISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsAppInBlockList(void *linux_side, AppId_t nAppID)
|
|
|
|
{
|
|
|
|
return ((ISteamParentalSettings*)linux_side)->BIsAppInBlockList((AppId_t)nAppID);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool cppISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsFeatureBlocked(void *linux_side, EParentalFeature eFeature)
|
|
|
|
{
|
|
|
|
return ((ISteamParentalSettings*)linux_side)->BIsFeatureBlocked((EParentalFeature)eFeature);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool cppISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsFeatureInBlockList(void *linux_side, EParentalFeature eFeature)
|
|
|
|
{
|
|
|
|
return ((ISteamParentalSettings*)linux_side)->BIsFeatureInBlockList((EParentalFeature)eFeature);
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|