1
0
Fork 0
mirror of https://github.com/Detanup01/gbe_fork.git synced 2025-04-21 13:42:23 +02:00
gbe_fork/sdk/steam/isteamvideo002.h
2024-07-07 02:39:21 +03:00

22 lines
No EOL
629 B
C++

#ifndef ISTEAMVIDEO002_H
#define ISTEAMVIDEO002_H
#ifdef _WIN32
#pragma once
#endif
class ISteamVideo002
{
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;
// Get the OPF Details for 360 Video Playback
STEAM_CALL_BACK( GetOPFSettingsResult_t )
virtual void GetOPFSettings( AppId_t unVideoAppID ) = 0;
virtual bool GetOPFStringForApp( AppId_t unVideoAppID, char *pchBuffer, int32 *pnBufferSize ) = 0;
};
#endif // ISTEAMVIDEO002_H