lsteamclient: Generate linux interface structs.

CW-Bug-Id: #22729
This commit is contained in:
Rémi Bernon 2023-09-23 23:44:45 +02:00 committed by Arkadiusz Hiler
parent 4988734817
commit a1445b757d
391 changed files with 19128 additions and 5873 deletions

View file

@ -11,162 +11,231 @@ extern "C" {
#define SDKVER_132
#include "struct_converters.h"
#include "cppISteamUGC_STEAMUGC_INTERFACE_VERSION003.h"
struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003
{
#ifdef __cplusplus
virtual uint64_t CreateQueryUserUGCRequest( uint32_t, uint32_t, uint32_t, uint32_t, uint32_t, uint32_t, uint32_t ) = 0;
virtual uint64_t CreateQueryAllUGCRequest( uint32_t, uint32_t, uint32_t, uint32_t, uint32_t ) = 0;
virtual uint64_t SendQueryUGCRequest( uint64_t ) = 0;
virtual bool GetQueryUGCResult( uint64_t, uint32_t, SteamUGCDetails_t * ) = 0;
virtual bool ReleaseQueryUGCRequest( uint64_t ) = 0;
virtual bool AddRequiredTag( uint64_t, const char * ) = 0;
virtual bool AddExcludedTag( uint64_t, const char * ) = 0;
virtual bool SetReturnLongDescription( uint64_t, bool ) = 0;
virtual bool SetReturnTotalOnly( uint64_t, bool ) = 0;
virtual bool SetAllowCachedResponse( uint64_t, uint32_t ) = 0;
virtual bool SetCloudFileNameFilter( uint64_t, const char * ) = 0;
virtual bool SetMatchAnyTag( uint64_t, bool ) = 0;
virtual bool SetSearchText( uint64_t, const char * ) = 0;
virtual bool SetRankedByTrendDays( uint64_t, uint32_t ) = 0;
virtual uint64_t RequestUGCDetails( uint64_t, uint32_t ) = 0;
virtual uint64_t CreateItem( uint32_t, uint32_t ) = 0;
virtual uint64_t StartItemUpdate( uint32_t, uint64_t ) = 0;
virtual bool SetItemTitle( uint64_t, const char * ) = 0;
virtual bool SetItemDescription( uint64_t, const char * ) = 0;
virtual bool SetItemVisibility( uint64_t, uint32_t ) = 0;
virtual bool SetItemTags( uint64_t, const SteamParamStringArray_t * ) = 0;
virtual bool SetItemContent( uint64_t, const char * ) = 0;
virtual bool SetItemPreview( uint64_t, const char * ) = 0;
virtual uint64_t SubmitItemUpdate( uint64_t, const char * ) = 0;
virtual uint32_t GetItemUpdateProgress( uint64_t, uint64_t *, uint64_t * ) = 0;
virtual uint64_t SubscribeItem( uint64_t ) = 0;
virtual uint64_t UnsubscribeItem( uint64_t ) = 0;
virtual uint32_t GetNumSubscribedItems( ) = 0;
virtual uint32_t GetSubscribedItems( uint64_t *, uint32_t ) = 0;
virtual bool GetItemInstallInfo( uint64_t, uint64_t *, char *, uint32_t, bool * ) = 0;
virtual bool GetItemUpdateInfo( uint64_t, bool *, bool *, uint64_t *, uint64_t * ) = 0;
#endif /* __cplusplus */
};
void cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_CreateQueryUserUGCRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_CreateQueryUserUGCRequest_params *params )
{
params->_ret = ((ISteamUGC*)params->linux_side)->CreateQueryUserUGCRequest( (AccountID_t)params->unAccountID, (EUserUGCList)params->eListType, (EUGCMatchingUGCType)params->eMatchingUGCType, (EUserUGCListSortOrder)params->eSortOrder, (AppId_t)params->nCreatorAppID, (AppId_t)params->nConsumerAppID, (uint32)params->unPage );
struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003 *iface = (struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003 *)params->linux_side;
params->_ret = iface->CreateQueryUserUGCRequest( params->unAccountID, params->eListType, params->eMatchingUGCType, params->eSortOrder, params->nCreatorAppID, params->nConsumerAppID, params->unPage );
}
void cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_CreateQueryAllUGCRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_CreateQueryAllUGCRequest_params *params )
{
params->_ret = ((ISteamUGC*)params->linux_side)->CreateQueryAllUGCRequest( (EUGCQuery)params->eQueryType, (EUGCMatchingUGCType)params->eMatchingeMatchingUGCTypeFileType, (AppId_t)params->nCreatorAppID, (AppId_t)params->nConsumerAppID, (uint32)params->unPage );
struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003 *iface = (struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003 *)params->linux_side;
params->_ret = iface->CreateQueryAllUGCRequest( params->eQueryType, params->eMatchingeMatchingUGCTypeFileType, params->nCreatorAppID, params->nConsumerAppID, params->unPage );
}
void cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_SendQueryUGCRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_SendQueryUGCRequest_params *params )
{
params->_ret = ((ISteamUGC*)params->linux_side)->SendQueryUGCRequest( (UGCQueryHandle_t)params->handle );
struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003 *iface = (struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003 *)params->linux_side;
params->_ret = iface->SendQueryUGCRequest( params->handle );
}
void cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetQueryUGCResult( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetQueryUGCResult_params *params )
{
struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003 *iface = (struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003 *)params->linux_side;
SteamUGCDetails_t lin_pDetails;
win_to_lin_struct_SteamUGCDetails_t_132( params->pDetails, &lin_pDetails );
params->_ret = ((ISteamUGC*)params->linux_side)->GetQueryUGCResult( (UGCQueryHandle_t)params->handle, (uint32)params->index, &lin_pDetails );
params->_ret = iface->GetQueryUGCResult( params->handle, params->index, &lin_pDetails );
lin_to_win_struct_SteamUGCDetails_t_132( &lin_pDetails, params->pDetails );
}
void cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_ReleaseQueryUGCRequest( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_ReleaseQueryUGCRequest_params *params )
{
params->_ret = ((ISteamUGC*)params->linux_side)->ReleaseQueryUGCRequest( (UGCQueryHandle_t)params->handle );
struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003 *iface = (struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003 *)params->linux_side;
params->_ret = iface->ReleaseQueryUGCRequest( params->handle );
}
void cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_AddRequiredTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_AddRequiredTag_params *params )
{
params->_ret = ((ISteamUGC*)params->linux_side)->AddRequiredTag( (UGCQueryHandle_t)params->handle, (const char *)params->pTagName );
struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003 *iface = (struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003 *)params->linux_side;
params->_ret = iface->AddRequiredTag( params->handle, params->pTagName );
}
void cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_AddExcludedTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_AddExcludedTag_params *params )
{
params->_ret = ((ISteamUGC*)params->linux_side)->AddExcludedTag( (UGCQueryHandle_t)params->handle, (const char *)params->pTagName );
struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003 *iface = (struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003 *)params->linux_side;
params->_ret = iface->AddExcludedTag( params->handle, params->pTagName );
}
void cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetReturnLongDescription( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetReturnLongDescription_params *params )
{
params->_ret = ((ISteamUGC*)params->linux_side)->SetReturnLongDescription( (UGCQueryHandle_t)params->handle, (bool)params->bReturnLongDescription );
struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003 *iface = (struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003 *)params->linux_side;
params->_ret = iface->SetReturnLongDescription( params->handle, params->bReturnLongDescription );
}
void cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetReturnTotalOnly( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetReturnTotalOnly_params *params )
{
params->_ret = ((ISteamUGC*)params->linux_side)->SetReturnTotalOnly( (UGCQueryHandle_t)params->handle, (bool)params->bReturnTotalOnly );
struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003 *iface = (struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003 *)params->linux_side;
params->_ret = iface->SetReturnTotalOnly( params->handle, params->bReturnTotalOnly );
}
void cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetAllowCachedResponse( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetAllowCachedResponse_params *params )
{
params->_ret = ((ISteamUGC*)params->linux_side)->SetAllowCachedResponse( (UGCQueryHandle_t)params->handle, (uint32)params->unMaxAgeSeconds );
struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003 *iface = (struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003 *)params->linux_side;
params->_ret = iface->SetAllowCachedResponse( params->handle, params->unMaxAgeSeconds );
}
void cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetCloudFileNameFilter( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetCloudFileNameFilter_params *params )
{
params->_ret = ((ISteamUGC*)params->linux_side)->SetCloudFileNameFilter( (UGCQueryHandle_t)params->handle, (const char *)params->pMatchCloudFileName );
struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003 *iface = (struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003 *)params->linux_side;
params->_ret = iface->SetCloudFileNameFilter( params->handle, params->pMatchCloudFileName );
}
void cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetMatchAnyTag( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetMatchAnyTag_params *params )
{
params->_ret = ((ISteamUGC*)params->linux_side)->SetMatchAnyTag( (UGCQueryHandle_t)params->handle, (bool)params->bMatchAnyTag );
struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003 *iface = (struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003 *)params->linux_side;
params->_ret = iface->SetMatchAnyTag( params->handle, params->bMatchAnyTag );
}
void cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetSearchText( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetSearchText_params *params )
{
params->_ret = ((ISteamUGC*)params->linux_side)->SetSearchText( (UGCQueryHandle_t)params->handle, (const char *)params->pSearchText );
struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003 *iface = (struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003 *)params->linux_side;
params->_ret = iface->SetSearchText( params->handle, params->pSearchText );
}
void cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetRankedByTrendDays( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetRankedByTrendDays_params *params )
{
params->_ret = ((ISteamUGC*)params->linux_side)->SetRankedByTrendDays( (UGCQueryHandle_t)params->handle, (uint32)params->unDays );
struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003 *iface = (struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003 *)params->linux_side;
params->_ret = iface->SetRankedByTrendDays( params->handle, params->unDays );
}
void cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_RequestUGCDetails( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_RequestUGCDetails_params *params )
{
params->_ret = ((ISteamUGC*)params->linux_side)->RequestUGCDetails( (PublishedFileId_t)params->nPublishedFileID, (uint32)params->unMaxAgeSeconds );
struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003 *iface = (struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003 *)params->linux_side;
params->_ret = iface->RequestUGCDetails( params->nPublishedFileID, params->unMaxAgeSeconds );
}
void cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_CreateItem( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_CreateItem_params *params )
{
params->_ret = ((ISteamUGC*)params->linux_side)->CreateItem( (AppId_t)params->nConsumerAppId, (EWorkshopFileType)params->eFileType );
struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003 *iface = (struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003 *)params->linux_side;
params->_ret = iface->CreateItem( params->nConsumerAppId, params->eFileType );
}
void cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_StartItemUpdate( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_StartItemUpdate_params *params )
{
params->_ret = ((ISteamUGC*)params->linux_side)->StartItemUpdate( (AppId_t)params->nConsumerAppId, (PublishedFileId_t)params->nPublishedFileID );
struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003 *iface = (struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003 *)params->linux_side;
params->_ret = iface->StartItemUpdate( params->nConsumerAppId, params->nPublishedFileID );
}
void cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemTitle( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemTitle_params *params )
{
params->_ret = ((ISteamUGC*)params->linux_side)->SetItemTitle( (UGCUpdateHandle_t)params->handle, (const char *)params->pchTitle );
struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003 *iface = (struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003 *)params->linux_side;
params->_ret = iface->SetItemTitle( params->handle, params->pchTitle );
}
void cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemDescription( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemDescription_params *params )
{
params->_ret = ((ISteamUGC*)params->linux_side)->SetItemDescription( (UGCUpdateHandle_t)params->handle, (const char *)params->pchDescription );
struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003 *iface = (struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003 *)params->linux_side;
params->_ret = iface->SetItemDescription( params->handle, params->pchDescription );
}
void cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemVisibility( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemVisibility_params *params )
{
params->_ret = ((ISteamUGC*)params->linux_side)->SetItemVisibility( (UGCUpdateHandle_t)params->handle, (ERemoteStoragePublishedFileVisibility)params->eVisibility );
struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003 *iface = (struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003 *)params->linux_side;
params->_ret = iface->SetItemVisibility( params->handle, params->eVisibility );
}
void cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemTags( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemTags_params *params )
{
params->_ret = ((ISteamUGC*)params->linux_side)->SetItemTags( (UGCUpdateHandle_t)params->updateHandle, (const SteamParamStringArray_t *)params->pTags );
struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003 *iface = (struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003 *)params->linux_side;
params->_ret = iface->SetItemTags( params->updateHandle, params->pTags );
}
void cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemContent( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemContent_params *params )
{
params->_ret = ((ISteamUGC*)params->linux_side)->SetItemContent( (UGCUpdateHandle_t)params->handle, (const char *)params->pszContentFolder );
struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003 *iface = (struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003 *)params->linux_side;
params->_ret = iface->SetItemContent( params->handle, params->pszContentFolder );
}
void cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemPreview( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_SetItemPreview_params *params )
{
params->_ret = ((ISteamUGC*)params->linux_side)->SetItemPreview( (UGCUpdateHandle_t)params->handle, (const char *)params->pszPreviewFile );
struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003 *iface = (struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003 *)params->linux_side;
params->_ret = iface->SetItemPreview( params->handle, params->pszPreviewFile );
}
void cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_SubmitItemUpdate( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_SubmitItemUpdate_params *params )
{
params->_ret = ((ISteamUGC*)params->linux_side)->SubmitItemUpdate( (UGCUpdateHandle_t)params->handle, (const char *)params->pchChangeNote );
struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003 *iface = (struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003 *)params->linux_side;
params->_ret = iface->SubmitItemUpdate( params->handle, params->pchChangeNote );
}
void cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetItemUpdateProgress( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetItemUpdateProgress_params *params )
{
params->_ret = ((ISteamUGC*)params->linux_side)->GetItemUpdateProgress( (UGCUpdateHandle_t)params->handle, (uint64 *)params->punBytesProcessed, (uint64 *)params->punBytesTotal );
struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003 *iface = (struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003 *)params->linux_side;
params->_ret = iface->GetItemUpdateProgress( params->handle, params->punBytesProcessed, params->punBytesTotal );
}
void cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_SubscribeItem( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_SubscribeItem_params *params )
{
params->_ret = ((ISteamUGC*)params->linux_side)->SubscribeItem( (PublishedFileId_t)params->nPublishedFileID );
struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003 *iface = (struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003 *)params->linux_side;
params->_ret = iface->SubscribeItem( params->nPublishedFileID );
}
void cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_UnsubscribeItem( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_UnsubscribeItem_params *params )
{
params->_ret = ((ISteamUGC*)params->linux_side)->UnsubscribeItem( (PublishedFileId_t)params->nPublishedFileID );
struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003 *iface = (struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003 *)params->linux_side;
params->_ret = iface->UnsubscribeItem( params->nPublishedFileID );
}
void cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetNumSubscribedItems( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetNumSubscribedItems_params *params )
{
params->_ret = ((ISteamUGC*)params->linux_side)->GetNumSubscribedItems( );
struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003 *iface = (struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003 *)params->linux_side;
params->_ret = iface->GetNumSubscribedItems( );
}
void cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetSubscribedItems( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetSubscribedItems_params *params )
{
params->_ret = ((ISteamUGC*)params->linux_side)->GetSubscribedItems( (PublishedFileId_t *)params->pvecPublishedFileID, (uint32)params->cMaxEntries );
struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003 *iface = (struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003 *)params->linux_side;
params->_ret = iface->GetSubscribedItems( params->pvecPublishedFileID, params->cMaxEntries );
}
void cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetItemInstallInfo( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetItemInstallInfo_params *params )
{
params->_ret = ((ISteamUGC*)params->linux_side)->GetItemInstallInfo( (PublishedFileId_t)params->nPublishedFileID, (uint64 *)params->punSizeOnDisk, (char *)params->pchFolder, (uint32)params->cchFolderSize, (bool *)params->pbLegacyItem );
struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003 *iface = (struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003 *)params->linux_side;
params->_ret = iface->GetItemInstallInfo( params->nPublishedFileID, params->punSizeOnDisk, params->pchFolder, params->cchFolderSize, params->pbLegacyItem );
}
void cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetItemUpdateInfo( struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003_GetItemUpdateInfo_params *params )
{
params->_ret = ((ISteamUGC*)params->linux_side)->GetItemUpdateInfo( (PublishedFileId_t)params->nPublishedFileID, (bool *)params->pbNeedsUpdate, (bool *)params->pbIsDownloading, (uint64 *)params->punBytesDownloaded, (uint64 *)params->punBytesTotal );
struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003 *iface = (struct cppISteamUGC_STEAMUGC_INTERFACE_VERSION003 *)params->linux_side;
params->_ret = iface->GetItemUpdateInfo( params->nPublishedFileID, params->pbNeedsUpdate, params->pbIsDownloading, params->punBytesDownloaded, params->punBytesTotal );
}
#ifdef __cplusplus