gbe_fork/sdk/steam/isteamvideo001.h
2024-06-14 19:10:12 +03:00

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