2
0
mirror of https://github.com/ValveSoftware/Proton synced 2025-08-30 22:25:34 +00:00

lsteamclient: build fixes

This commit is contained in:
Andrew Eikum
2018-10-29 13:26:08 -05:00
parent 9d1c8963e4
commit dca026aff1
220 changed files with 2072 additions and 7026 deletions

View File

@@ -2,10 +2,10 @@
#include "steam_defs.h"
#include "steamworks_sdk_130/steam_api.h"
#include "cppISteamUGC_STEAMUGC_INTERFACE_VERSION002.h"
#include "struct_converters_130.h"
#ifdef __cplusplus
extern "C" {
#endif
#include "struct_converters_130.h"
UGCQueryHandle_t cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_CreateQueryUserUGCRequest(void *linux_side, AccountID_t unAccountID, EUserUGCList eListType, EUGCMatchingUGCType eMatchingUGCType, EUserUGCListSortOrder eSortOrder, AppId_t nCreatorAppID, AppId_t nConsumerAppID, uint32 unPage)
{
return ((ISteamUGC*)linux_side)->CreateQueryUserUGCRequest((AccountID_t)unAccountID, (EUserUGCList)eListType, (EUGCMatchingUGCType)eMatchingUGCType, (EUserUGCListSortOrder)eSortOrder, (AppId_t)nCreatorAppID, (AppId_t)nConsumerAppID, (uint32)unPage);
@@ -115,7 +115,6 @@ bool cppISteamUGC_STEAMUGC_INTERFACE_VERSION002_SetItemTags(void *linux_side, UG
SteamParamStringArray_t lin_pTags;
win_to_lin_struct_SteamParamStringArray_t_130(pTags, &lin_pTags);
bool retval = ((ISteamUGC*)linux_side)->SetItemTags((UGCUpdateHandle_t)updateHandle, &lin_pTags);
lin_to_win_struct_const SteamParamStringArray_t_130(&lin_pTags, pTags);
return retval;
}