lsteamclient: Wrap parameters in structures.

CW-Bug-Id: #22729
This commit is contained in:
Rémi Bernon 2023-09-27 14:34:23 +02:00
parent 8d07121950
commit fb8548e79f
439 changed files with 109952 additions and 43685 deletions

View file

@ -1,2 +1,15 @@
extern void cppISteamVideo_STEAMVIDEO_INTERFACE_V001_GetVideoURL(void *, AppId_t);
extern bool cppISteamVideo_STEAMVIDEO_INTERFACE_V001_IsBroadcasting(void *, int *);
struct cppISteamVideo_STEAMVIDEO_INTERFACE_V001_GetVideoURL_params
{
void *linux_side;
AppId_t unVideoAppID;
};
extern void cppISteamVideo_STEAMVIDEO_INTERFACE_V001_GetVideoURL( struct cppISteamVideo_STEAMVIDEO_INTERFACE_V001_GetVideoURL_params *params );
struct cppISteamVideo_STEAMVIDEO_INTERFACE_V001_IsBroadcasting_params
{
void *linux_side;
bool _ret;
int *pnNumViewers;
};
extern void cppISteamVideo_STEAMVIDEO_INTERFACE_V001_IsBroadcasting( struct cppISteamVideo_STEAMVIDEO_INTERFACE_V001_IsBroadcasting_params *params );