mirror of
https://github.com/ValveSoftware/Proton.git
synced 2025-01-24 20:48:12 +03:00
9ea65fe0d0
CW-Bug-Id: #22729
25 lines
984 B
C++
25 lines
984 B
C++
/* This file is auto-generated, do not edit. */
|
|
#include "unix_private.h"
|
|
#include "cppISteamVideo_STEAMVIDEO_INTERFACE_V001.h"
|
|
|
|
struct u_ISteamVideo_STEAMVIDEO_INTERFACE_V001
|
|
{
|
|
#ifdef __cplusplus
|
|
virtual void GetVideoURL( uint32_t ) = 0;
|
|
virtual bool IsBroadcasting( int32_t * ) = 0;
|
|
#endif /* __cplusplus */
|
|
};
|
|
|
|
void cppISteamVideo_STEAMVIDEO_INTERFACE_V001_GetVideoURL( struct cppISteamVideo_STEAMVIDEO_INTERFACE_V001_GetVideoURL_params *params )
|
|
{
|
|
struct u_ISteamVideo_STEAMVIDEO_INTERFACE_V001 *iface = (struct u_ISteamVideo_STEAMVIDEO_INTERFACE_V001 *)params->linux_side;
|
|
iface->GetVideoURL( params->unVideoAppID );
|
|
}
|
|
|
|
void cppISteamVideo_STEAMVIDEO_INTERFACE_V001_IsBroadcasting( struct cppISteamVideo_STEAMVIDEO_INTERFACE_V001_IsBroadcasting_params *params )
|
|
{
|
|
struct u_ISteamVideo_STEAMVIDEO_INTERFACE_V001 *iface = (struct u_ISteamVideo_STEAMVIDEO_INTERFACE_V001 *)params->linux_side;
|
|
params->_ret = iface->IsBroadcasting( params->pnNumViewers );
|
|
}
|
|
|