Proton/lsteamclient/cppISteamUtils_SteamUtils008.cpp

158 lines
7.1 KiB
C++
Raw Normal View History

2018-01-18 19:24:05 +03:00
#include "steam_defs.h"
#pragma push_macro("__cdecl")
#undef __cdecl
#define __cdecl
2018-01-18 19:24:05 +03:00
#include "steamworks_sdk_139/steam_api.h"
#pragma pop_macro("__cdecl")
#include "steamclient_private.h"
2018-01-18 19:24:05 +03:00
#ifdef __cplusplus
extern "C" {
#endif
#define SDKVER_139
#include "struct_converters.h"
#include "cppISteamUtils_SteamUtils008.h"
void cppISteamUtils_SteamUtils008_GetSecondsSinceAppActive( struct cppISteamUtils_SteamUtils008_GetSecondsSinceAppActive_params *params )
2018-01-18 19:24:05 +03:00
{
params->_ret = ((ISteamUtils*)params->linux_side)->GetSecondsSinceAppActive( );
2018-01-18 19:24:05 +03:00
}
void cppISteamUtils_SteamUtils008_GetSecondsSinceComputerActive( struct cppISteamUtils_SteamUtils008_GetSecondsSinceComputerActive_params *params )
2018-01-18 19:24:05 +03:00
{
params->_ret = ((ISteamUtils*)params->linux_side)->GetSecondsSinceComputerActive( );
2018-01-18 19:24:05 +03:00
}
void cppISteamUtils_SteamUtils008_GetConnectedUniverse( struct cppISteamUtils_SteamUtils008_GetConnectedUniverse_params *params )
2018-01-18 19:24:05 +03:00
{
params->_ret = ((ISteamUtils*)params->linux_side)->GetConnectedUniverse( );
2018-01-18 19:24:05 +03:00
}
void cppISteamUtils_SteamUtils008_GetServerRealTime( struct cppISteamUtils_SteamUtils008_GetServerRealTime_params *params )
2018-01-18 19:24:05 +03:00
{
params->_ret = ((ISteamUtils*)params->linux_side)->GetServerRealTime( );
2018-01-18 19:24:05 +03:00
}
void cppISteamUtils_SteamUtils008_GetIPCountry( struct cppISteamUtils_SteamUtils008_GetIPCountry_params *params )
2018-01-18 19:24:05 +03:00
{
params->_ret = ((ISteamUtils*)params->linux_side)->GetIPCountry( );
2018-01-18 19:24:05 +03:00
}
void cppISteamUtils_SteamUtils008_GetImageSize( struct cppISteamUtils_SteamUtils008_GetImageSize_params *params )
2018-01-18 19:24:05 +03:00
{
params->_ret = ((ISteamUtils*)params->linux_side)->GetImageSize( (int)params->iImage, (uint32 *)params->pnWidth, (uint32 *)params->pnHeight );
2018-01-18 19:24:05 +03:00
}
void cppISteamUtils_SteamUtils008_GetImageRGBA( struct cppISteamUtils_SteamUtils008_GetImageRGBA_params *params )
2018-01-18 19:24:05 +03:00
{
params->_ret = ((ISteamUtils*)params->linux_side)->GetImageRGBA( (int)params->iImage, (uint8 *)params->pubDest, (int)params->nDestBufferSize );
2018-01-18 19:24:05 +03:00
}
void cppISteamUtils_SteamUtils008_GetCSERIPPort( struct cppISteamUtils_SteamUtils008_GetCSERIPPort_params *params )
2018-01-18 19:24:05 +03:00
{
params->_ret = ((ISteamUtils*)params->linux_side)->GetCSERIPPort( (uint32 *)params->unIP, (uint16 *)params->usPort );
2018-01-18 19:24:05 +03:00
}
void cppISteamUtils_SteamUtils008_GetCurrentBatteryPower( struct cppISteamUtils_SteamUtils008_GetCurrentBatteryPower_params *params )
2018-01-18 19:24:05 +03:00
{
params->_ret = ((ISteamUtils*)params->linux_side)->GetCurrentBatteryPower( );
2018-01-18 19:24:05 +03:00
}
void cppISteamUtils_SteamUtils008_GetAppID( struct cppISteamUtils_SteamUtils008_GetAppID_params *params )
2018-01-18 19:24:05 +03:00
{
params->_ret = ((ISteamUtils*)params->linux_side)->GetAppID( );
2018-01-18 19:24:05 +03:00
}
void cppISteamUtils_SteamUtils008_SetOverlayNotificationPosition( struct cppISteamUtils_SteamUtils008_SetOverlayNotificationPosition_params *params )
2018-01-18 19:24:05 +03:00
{
((ISteamUtils*)params->linux_side)->SetOverlayNotificationPosition( (ENotificationPosition)params->eNotificationPosition );
2018-01-18 19:24:05 +03:00
}
void cppISteamUtils_SteamUtils008_IsAPICallCompleted( struct cppISteamUtils_SteamUtils008_IsAPICallCompleted_params *params )
2018-01-18 19:24:05 +03:00
{
params->_ret = ((ISteamUtils*)params->linux_side)->IsAPICallCompleted( (SteamAPICall_t)params->hSteamAPICall, (bool *)params->pbFailed );
2018-01-18 19:24:05 +03:00
}
void cppISteamUtils_SteamUtils008_GetAPICallFailureReason( struct cppISteamUtils_SteamUtils008_GetAPICallFailureReason_params *params )
2018-01-18 19:24:05 +03:00
{
params->_ret = ((ISteamUtils*)params->linux_side)->GetAPICallFailureReason( (SteamAPICall_t)params->hSteamAPICall );
2018-01-18 19:24:05 +03:00
}
void cppISteamUtils_SteamUtils008_GetAPICallResult( struct cppISteamUtils_SteamUtils008_GetAPICallResult_params *params )
2018-01-18 19:24:05 +03:00
{
params->_ret = ((ISteamUtils*)params->linux_side)->GetAPICallResult( (SteamAPICall_t)params->hSteamAPICall, (void *)params->pCallback, (int)params->cubCallback, (int)params->iCallbackExpected, (bool *)params->pbFailed );
2018-01-18 19:24:05 +03:00
}
void cppISteamUtils_SteamUtils008_RunFrame( struct cppISteamUtils_SteamUtils008_RunFrame_params *params )
2018-01-18 19:24:05 +03:00
{
((ISteamUtils*)params->linux_side)->RunFrame( );
2018-01-18 19:24:05 +03:00
}
void cppISteamUtils_SteamUtils008_GetIPCCallCount( struct cppISteamUtils_SteamUtils008_GetIPCCallCount_params *params )
2018-01-18 19:24:05 +03:00
{
params->_ret = ((ISteamUtils*)params->linux_side)->GetIPCCallCount( );
2018-01-18 19:24:05 +03:00
}
void cppISteamUtils_SteamUtils008_SetWarningMessageHook( struct cppISteamUtils_SteamUtils008_SetWarningMessageHook_params *params )
2018-01-18 19:24:05 +03:00
{
SteamAPIWarningMessageHook_t lin_pFunction = (SteamAPIWarningMessageHook_t)manual_convert_SteamAPIWarningMessageHook_t( (void *)params->pFunction );
((ISteamUtils*)params->linux_side)->SetWarningMessageHook( lin_pFunction );
2018-01-18 19:24:05 +03:00
}
void cppISteamUtils_SteamUtils008_IsOverlayEnabled( struct cppISteamUtils_SteamUtils008_IsOverlayEnabled_params *params )
2018-01-18 19:24:05 +03:00
{
params->_ret = ((ISteamUtils*)params->linux_side)->IsOverlayEnabled( );
2018-01-18 19:24:05 +03:00
}
void cppISteamUtils_SteamUtils008_BOverlayNeedsPresent( struct cppISteamUtils_SteamUtils008_BOverlayNeedsPresent_params *params )
2018-01-18 19:24:05 +03:00
{
params->_ret = ((ISteamUtils*)params->linux_side)->BOverlayNeedsPresent( );
2018-01-18 19:24:05 +03:00
}
void cppISteamUtils_SteamUtils008_CheckFileSignature( struct cppISteamUtils_SteamUtils008_CheckFileSignature_params *params )
2018-01-18 19:24:05 +03:00
{
params->_ret = ((ISteamUtils*)params->linux_side)->CheckFileSignature( (const char *)params->szFileName );
2018-01-18 19:24:05 +03:00
}
void cppISteamUtils_SteamUtils008_ShowGamepadTextInput( struct cppISteamUtils_SteamUtils008_ShowGamepadTextInput_params *params )
2018-01-18 19:24:05 +03:00
{
params->_ret = ((ISteamUtils*)params->linux_side)->ShowGamepadTextInput( (EGamepadTextInputMode)params->eInputMode, (EGamepadTextInputLineMode)params->eLineInputMode, (const char *)params->pchDescription, (uint32)params->unCharMax, (const char *)params->pchExistingText );
2018-01-18 19:24:05 +03:00
}
void cppISteamUtils_SteamUtils008_GetEnteredGamepadTextLength( struct cppISteamUtils_SteamUtils008_GetEnteredGamepadTextLength_params *params )
2018-01-18 19:24:05 +03:00
{
params->_ret = ((ISteamUtils*)params->linux_side)->GetEnteredGamepadTextLength( );
2018-01-18 19:24:05 +03:00
}
void cppISteamUtils_SteamUtils008_GetEnteredGamepadTextInput( struct cppISteamUtils_SteamUtils008_GetEnteredGamepadTextInput_params *params )
2018-01-18 19:24:05 +03:00
{
params->_ret = ((ISteamUtils*)params->linux_side)->GetEnteredGamepadTextInput( (char *)params->pchText, (uint32)params->cchText );
2018-01-18 19:24:05 +03:00
}
void cppISteamUtils_SteamUtils008_GetSteamUILanguage( struct cppISteamUtils_SteamUtils008_GetSteamUILanguage_params *params )
2018-01-18 19:24:05 +03:00
{
params->_ret = ((ISteamUtils*)params->linux_side)->GetSteamUILanguage( );
2018-01-18 19:24:05 +03:00
}
void cppISteamUtils_SteamUtils008_IsSteamRunningInVR( struct cppISteamUtils_SteamUtils008_IsSteamRunningInVR_params *params )
2018-01-18 19:24:05 +03:00
{
params->_ret = ((ISteamUtils*)params->linux_side)->IsSteamRunningInVR( );
2018-01-18 19:24:05 +03:00
}
void cppISteamUtils_SteamUtils008_SetOverlayNotificationInset( struct cppISteamUtils_SteamUtils008_SetOverlayNotificationInset_params *params )
2018-01-18 19:24:05 +03:00
{
((ISteamUtils*)params->linux_side)->SetOverlayNotificationInset( (int)params->nHorizontalInset, (int)params->nVerticalInset );
2018-01-18 19:24:05 +03:00
}
void cppISteamUtils_SteamUtils008_IsSteamInBigPictureMode( struct cppISteamUtils_SteamUtils008_IsSteamInBigPictureMode_params *params )
2018-01-18 19:24:05 +03:00
{
params->_ret = ((ISteamUtils*)params->linux_side)->IsSteamInBigPictureMode( );
2018-01-18 19:24:05 +03:00
}
void cppISteamUtils_SteamUtils008_StartVRDashboard( struct cppISteamUtils_SteamUtils008_StartVRDashboard_params *params )
2018-01-18 19:24:05 +03:00
{
((ISteamUtils*)params->linux_side)->StartVRDashboard( );
2018-01-18 19:24:05 +03:00
}
#ifdef __cplusplus
}
#endif