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
|
2023-09-18 16:58:31 +03:00
|
|
|
#include "steamworks_sdk_158/steam_api.h"
|
|
|
|
#include "steamworks_sdk_158/steamnetworkingtypes.h"
|
|
|
|
#include "steamworks_sdk_158/isteamparentalsettings.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
|
2023-09-18 16:58:31 +03:00
|
|
|
#define SDKVER_158
|
2019-02-26 09:05:29 -06:00
|
|
|
#include "struct_converters.h"
|
|
|
|
#include "cppISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001.h"
|
2023-09-27 14:34:23 +02:00
|
|
|
void cppISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsParentalLockEnabled( struct cppISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsParentalLockEnabled_params *params )
|
2018-01-18 10:24:05 -06:00
|
|
|
{
|
2023-09-27 14:34:23 +02:00
|
|
|
params->_ret = ((ISteamParentalSettings*)params->linux_side)->BIsParentalLockEnabled( );
|
2018-01-18 10:24:05 -06:00
|
|
|
}
|
|
|
|
|
2023-09-27 14:34:23 +02:00
|
|
|
void cppISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsParentalLockLocked( struct cppISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsParentalLockLocked_params *params )
|
2018-01-18 10:24:05 -06:00
|
|
|
{
|
2023-09-27 14:34:23 +02:00
|
|
|
params->_ret = ((ISteamParentalSettings*)params->linux_side)->BIsParentalLockLocked( );
|
2018-01-18 10:24:05 -06:00
|
|
|
}
|
|
|
|
|
2023-09-27 14:34:23 +02:00
|
|
|
void cppISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsAppBlocked( struct cppISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsAppBlocked_params *params )
|
2018-01-18 10:24:05 -06:00
|
|
|
{
|
2023-09-27 14:34:23 +02:00
|
|
|
params->_ret = ((ISteamParentalSettings*)params->linux_side)->BIsAppBlocked( (AppId_t)params->nAppID );
|
2018-01-18 10:24:05 -06:00
|
|
|
}
|
|
|
|
|
2023-09-27 14:34:23 +02:00
|
|
|
void cppISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsAppInBlockList( struct cppISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsAppInBlockList_params *params )
|
2018-01-18 10:24:05 -06:00
|
|
|
{
|
2023-09-27 14:34:23 +02:00
|
|
|
params->_ret = ((ISteamParentalSettings*)params->linux_side)->BIsAppInBlockList( (AppId_t)params->nAppID );
|
2018-01-18 10:24:05 -06:00
|
|
|
}
|
|
|
|
|
2023-09-27 14:34:23 +02:00
|
|
|
void cppISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsFeatureBlocked( struct cppISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsFeatureBlocked_params *params )
|
2018-01-18 10:24:05 -06:00
|
|
|
{
|
2023-09-27 14:34:23 +02:00
|
|
|
params->_ret = ((ISteamParentalSettings*)params->linux_side)->BIsFeatureBlocked( (EParentalFeature)params->eFeature );
|
2018-01-18 10:24:05 -06:00
|
|
|
}
|
|
|
|
|
2023-09-27 14:34:23 +02:00
|
|
|
void cppISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsFeatureInBlockList( struct cppISteamParentalSettings_STEAMPARENTALSETTINGS_INTERFACE_VERSION001_BIsFeatureInBlockList_params *params )
|
2018-01-18 10:24:05 -06:00
|
|
|
{
|
2023-09-27 14:34:23 +02:00
|
|
|
params->_ret = ((ISteamParentalSettings*)params->linux_side)->BIsFeatureInBlockList( (EParentalFeature)params->eFeature );
|
2018-01-18 10:24:05 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|