mirror of
https://gitlab.com/Mr_Goldberg/goldberg_emulator.git
synced 2025-12-06 12:14:54 +01:00
ISteamApps 002-007 implemented.
This commit is contained in:
parent
9deef8c6f3
commit
6ccb8f6c0b
11 changed files with 372 additions and 2 deletions
22
sdk_includes/isteamapps002.h
Normal file
22
sdk_includes/isteamapps002.h
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
|
||||
#ifndef ISTEAMAPPS002_H
|
||||
#define ISTEAMAPPS002_H
|
||||
#ifdef STEAM_WIN32
|
||||
#pragma once
|
||||
#endif
|
||||
|
||||
class ISteamApps002
|
||||
{
|
||||
public:
|
||||
virtual bool BIsSubscribed() = 0;
|
||||
virtual bool BIsLowViolence() = 0;
|
||||
virtual bool BIsCybercafe() = 0;
|
||||
virtual bool BIsVACBanned() = 0;
|
||||
virtual const char *GetCurrentGameLanguage() = 0;
|
||||
virtual const char *GetAvailableGameLanguages() = 0;
|
||||
|
||||
// only use this member if you need to check ownership of another game related to yours, a demo for example
|
||||
virtual bool BIsSubscribedApp( AppId_t appID ) = 0;
|
||||
};
|
||||
|
||||
#endif //ISTEAMAPPS002_H
|
||||
Loading…
Add table
Add a link
Reference in a new issue