This commit is contained in:
Mr_Goldberg 2022-08-05 01:32:20 -04:00
parent 0fc5a564e1
commit ba877b6e78
No known key found for this signature in database
GPG key ID: 8597D87419DEF278
9 changed files with 44 additions and 1 deletions

View file

@ -107,7 +107,10 @@ public:
virtual bool BIsSubscribedFromFamilySharing() = 0;
// check if game is a timed trial with limited playtime
virtual bool BIsTimedTrial( uint32* punSecondsAllowed, uint32* punSecondsPlayed ) = 0;
virtual bool BIsTimedTrial( uint32* punSecondsAllowed, uint32* punSecondsPlayed ) = 0;
// set current DLC AppID being played (or 0 if none). Allows Steam to track usage of major DLC extensions
virtual bool SetDlcContext( AppId_t nAppID ) = 0;
};
#define STEAMAPPS_INTERFACE_VERSION "STEAMAPPS_INTERFACE_VERSION008"