mirror of
https://github.com/Detanup01/gbe_fork.git
synced 2024-11-23 19:25:35 +08:00
20 lines
512 B
C
20 lines
512 B
C
|
|
||
|
#ifndef ISTEAMAPPDISABLEUPDATE_H
|
||
|
#define ISTEAMAPPDISABLEUPDATE_H
|
||
|
|
||
|
// this interface is not found in public SDK archives, it is based on reversing the returned vftable from steamclient64.dll
|
||
|
// requested by appid 730
|
||
|
|
||
|
class ISteamAppDisableUpdate
|
||
|
{
|
||
|
public:
|
||
|
|
||
|
// probably means how many seconds to keep the updates disabled
|
||
|
virtual void SetAppUpdateDisabledSecondsRemaining(int32 nSeconds) = 0;
|
||
|
|
||
|
};
|
||
|
|
||
|
#define STEAMAPPDISABLEUPDATE_INTERFACE_VERSION "SteamAppDisableUpdate001"
|
||
|
|
||
|
#endif // ISTEAMAPPDISABLEUPDATE_H
|