mirror of
https://github.com/Detanup01/gbe_fork.git
synced 2024-11-23 19:25:35 +08:00
18 lines
398 B
C
18 lines
398 B
C
|
#ifndef ISTEAMVIDEO001_H
|
||
|
#define ISTEAMVIDEO001_H
|
||
|
#ifdef _WIN32
|
||
|
#pragma once
|
||
|
#endif
|
||
|
|
||
|
class ISteamVideo001
|
||
|
{
|
||
|
public:
|
||
|
|
||
|
// Get a URL suitable for streaming the given Video app ID's video
|
||
|
virtual void GetVideoURL( AppId_t unVideoAppID ) = 0;
|
||
|
|
||
|
// returns true if user is uploading a live broadcast
|
||
|
virtual bool IsBroadcasting( int *pnNumViewers ) = 0;
|
||
|
};
|
||
|
|
||
|
#endif // ISTEAMVIDEO001_H
|