2019-04-13 16:21:56 +00:00
|
|
|
|
//====== Copyright <20> 2013-, Valve Corporation, All rights reserved. =======
|
|
|
|
|
//
|
|
|
|
|
// Purpose: Interface to Steam parental settings (Family View)
|
|
|
|
|
//
|
|
|
|
|
//=============================================================================
|
|
|
|
|
|
|
|
|
|
#ifndef ISTEAMPARENTALSETTINGS_H
|
|
|
|
|
#define ISTEAMPARENTALSETTINGS_H
|
|
|
|
|
#ifdef STEAM_WIN32
|
|
|
|
|
#pragma once
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#include "steam_api_common.h"
|
|
|
|
|
|
|
|
|
|
// Feature types for parental settings
|
|
|
|
|
enum EParentalFeature
|
|
|
|
|
{
|
|
|
|
|
k_EFeatureInvalid = 0,
|
|
|
|
|
k_EFeatureStore = 1,
|
|
|
|
|
k_EFeatureCommunity = 2,
|
|
|
|
|
k_EFeatureProfile = 3,
|
|
|
|
|
k_EFeatureFriends = 4,
|
|
|
|
|
k_EFeatureNews = 5,
|
|
|
|
|
k_EFeatureTrading = 6,
|
|
|
|
|
k_EFeatureSettings = 7,
|
|
|
|
|
k_EFeatureConsole = 8,
|
|
|
|
|
k_EFeatureBrowser = 9,
|
|
|
|
|
k_EFeatureParentalSetup = 10,
|
|
|
|
|
k_EFeatureLibrary = 11,
|
|
|
|
|
k_EFeatureTest = 12,
|
2020-03-25 17:43:23 +00:00
|
|
|
|
k_EFeatureSiteLicense = 13,
|
2019-04-13 16:21:56 +00:00
|
|
|
|
k_EFeatureMax
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
class ISteamParentalSettings
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
virtual bool BIsParentalLockEnabled() = 0;
|
|
|
|
|
virtual bool BIsParentalLockLocked() = 0;
|
|
|
|
|
|
|
|
|
|
virtual bool BIsAppBlocked( AppId_t nAppID ) = 0;
|
|
|
|
|
virtual bool BIsAppInBlockList( AppId_t nAppID ) = 0;
|
|
|
|
|
|
|
|
|
|
virtual bool BIsFeatureBlocked( EParentalFeature eFeature ) = 0;
|
|
|
|
|
virtual bool BIsFeatureInBlockList( EParentalFeature eFeature ) = 0;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#define STEAMPARENTALSETTINGS_INTERFACE_VERSION "STEAMPARENTALSETTINGS_INTERFACE_VERSION001"
|
|
|
|
|
|
|
|
|
|
#ifndef STEAM_API_EXPORTS
|
|
|
|
|
// Global interface accessor
|
|
|
|
|
inline ISteamParentalSettings *SteamParentalSettings();
|
|
|
|
|
STEAM_DEFINE_USER_INTERFACE_ACCESSOR( ISteamParentalSettings *, SteamParentalSettings, STEAMPARENTALSETTINGS_INTERFACE_VERSION );
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
// Purpose: Callback for querying UGC
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
struct SteamParentalSettingsChanged_t
|
|
|
|
|
{
|
|
|
|
|
enum { k_iCallback = k_ISteamParentalSettingsCallbacks + 1 };
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif // ISTEAMPARENTALSETTINGS_H
|