lsteamclient: Generate 1.45 support

This commit is contained in:
Andrew Eikum 2019-08-16 07:44:08 -05:00
parent 7aa1b840d9
commit 35752dadb6
60 changed files with 3784 additions and 1488 deletions

View file

@ -1,11 +1,11 @@
#include "steam_defs.h"
#include "steamworks_sdk_144/steam_api.h"
#include "steamworks_sdk_144/steamnetworkingtypes.h"
#include "steamworks_sdk_145/steam_api.h"
#include "steamworks_sdk_145/steamnetworkingtypes.h"
#include "steamclient_private.h"
#ifdef __cplusplus
extern "C" {
#endif
#define SDKVER_144
#define SDKVER_145
#include "struct_converters.h"
#include "cppISteamUtils_SteamUtils009.h"
uint32 cppISteamUtils_SteamUtils009_GetSecondsSinceAppActive(void *linux_side)
@ -158,6 +158,21 @@ void cppISteamUtils_SteamUtils009_SetVRHeadsetStreamingEnabled(void *linux_side,
((ISteamUtils*)linux_side)->SetVRHeadsetStreamingEnabled((bool)bEnabled);
}
bool cppISteamUtils_SteamUtils009_IsSteamChinaLauncher(void *linux_side)
{
return ((ISteamUtils*)linux_side)->IsSteamChinaLauncher();
}
bool cppISteamUtils_SteamUtils009_InitFilterText(void *linux_side)
{
return ((ISteamUtils*)linux_side)->InitFilterText();
}
int cppISteamUtils_SteamUtils009_FilterText(void *linux_side, char * pchOutFilteredText, uint32 nByteSizeOutFilteredText, const char * pchInputMessage, bool bLegalOnly)
{
return ((ISteamUtils*)linux_side)->FilterText((char *)pchOutFilteredText, (uint32)nByteSizeOutFilteredText, (const char *)pchInputMessage, (bool)bLegalOnly);
}
#ifdef __cplusplus
}
#endif