mirror of
https://git.suyu.dev/suyu/Yucom.git
synced 2025-12-24 00:04:34 +01:00
Move lsteamclient out of wine
This commit is contained in:
parent
ee74e78c18
commit
f07f9247a5
1690 changed files with 463666 additions and 0 deletions
30
lsteamclient/cppISteamVideo_STEAMVIDEO_INTERFACE_V002.cpp
Normal file
30
lsteamclient/cppISteamVideo_STEAMVIDEO_INTERFACE_V002.cpp
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
#include "steamclient_private.h"
|
||||
#include "steam_defs.h"
|
||||
#include "steamworks_sdk_142/steam_api.h"
|
||||
#include "cppISteamVideo_STEAMVIDEO_INTERFACE_V002.h"
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
void cppISteamVideo_STEAMVIDEO_INTERFACE_V002_GetVideoURL(void *linux_side, AppId_t unVideoAppID)
|
||||
{
|
||||
((ISteamVideo*)linux_side)->GetVideoURL((AppId_t)unVideoAppID);
|
||||
}
|
||||
|
||||
bool cppISteamVideo_STEAMVIDEO_INTERFACE_V002_IsBroadcasting(void *linux_side, int * pnNumViewers)
|
||||
{
|
||||
return ((ISteamVideo*)linux_side)->IsBroadcasting((int *)pnNumViewers);
|
||||
}
|
||||
|
||||
void cppISteamVideo_STEAMVIDEO_INTERFACE_V002_GetOPFSettings(void *linux_side, AppId_t unVideoAppID)
|
||||
{
|
||||
((ISteamVideo*)linux_side)->GetOPFSettings((AppId_t)unVideoAppID);
|
||||
}
|
||||
|
||||
bool cppISteamVideo_STEAMVIDEO_INTERFACE_V002_GetOPFStringForApp(void *linux_side, AppId_t unVideoAppID, char * pchBuffer, int32 * pnBufferSize)
|
||||
{
|
||||
return ((ISteamVideo*)linux_side)->GetOPFStringForApp((AppId_t)unVideoAppID, (char *)pchBuffer, (int32 *)pnBufferSize);
|
||||
}
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
Loading…
Add table
Add a link
Reference in a new issue