mirror of
https://github.com/alex47exe/gse_fork.git
synced 2026-02-04 05:41:18 +01:00
18 lines
386 B
C++
18 lines
386 B
C++
#ifndef ISTEAMVIDEO001_H
|
|
#define ISTEAMVIDEO001_H
|
|
#ifdef STEAM_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
|