2018-01-18 19:24:05 +03:00
|
|
|
#include "steam_defs.h"
|
|
|
|
#include "steamworks_sdk_139/steam_api.h"
|
2018-10-30 22:06:46 +03:00
|
|
|
#include "steamclient_private.h"
|
2018-01-18 19:24:05 +03:00
|
|
|
#include "cppISteamVideo_STEAMVIDEO_INTERFACE_V001.h"
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
2018-10-29 21:26:08 +03:00
|
|
|
#include "struct_converters_139.h"
|
2018-01-18 19:24:05 +03:00
|
|
|
void cppISteamVideo_STEAMVIDEO_INTERFACE_V001_GetVideoURL(void *linux_side, AppId_t unVideoAppID)
|
|
|
|
{
|
|
|
|
((ISteamVideo*)linux_side)->GetVideoURL((AppId_t)unVideoAppID);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool cppISteamVideo_STEAMVIDEO_INTERFACE_V001_IsBroadcasting(void *linux_side, int * pnNumViewers)
|
|
|
|
{
|
|
|
|
return ((ISteamVideo*)linux_side)->IsBroadcasting((int *)pnNumViewers);
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|