mirror of
https://git.suyu.dev/suyu/Yucom.git
synced 2025-12-21 21:26:03 +01:00
lsteamclient: Generate 1.46 support
This commit is contained in:
parent
35752dadb6
commit
19b53264bd
53 changed files with 2355 additions and 1504 deletions
|
|
@ -1,11 +1,11 @@
|
|||
#include "steam_defs.h"
|
||||
#include "steamworks_sdk_145/steam_api.h"
|
||||
#include "steamworks_sdk_145/steamnetworkingtypes.h"
|
||||
#include "steamworks_sdk_146/steam_api.h"
|
||||
#include "steamworks_sdk_146/steamnetworkingtypes.h"
|
||||
#include "steamclient_private.h"
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
#define SDKVER_145
|
||||
#define SDKVER_146
|
||||
#include "struct_converters.h"
|
||||
#include "cppISteamInput_SteamInput001.h"
|
||||
bool cppISteamInput_SteamInput001_Init(void *linux_side)
|
||||
|
|
@ -178,6 +178,11 @@ bool cppISteamInput_SteamInput001_GetDeviceBindingRevision(void *linux_side, Inp
|
|||
return ((ISteamInput*)linux_side)->GetDeviceBindingRevision((InputHandle_t)inputHandle, (int *)pMajor, (int *)pMinor);
|
||||
}
|
||||
|
||||
uint32 cppISteamInput_SteamInput001_GetRemotePlaySessionID(void *linux_side, InputHandle_t inputHandle)
|
||||
{
|
||||
return ((ISteamInput*)linux_side)->GetRemotePlaySessionID((InputHandle_t)inputHandle);
|
||||
}
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue