Proton/lsteamclient/cppISteamUtils_SteamUtils004.cpp
2024-02-15 15:53:24 +02:00

138 lines
4.2 KiB
C++

#include "steam_defs.h"
#pragma push_macro("__cdecl")
#undef __cdecl
#define __cdecl
#include "steamworks_sdk_106/steam_api.h"
#pragma pop_macro("__cdecl")
#include "steamclient_private.h"
#ifdef __cplusplus
extern "C" {
#endif
#define SDKVER_106
#include "struct_converters.h"
#include "cppISteamUtils_SteamUtils004.h"
uint32 cppISteamUtils_SteamUtils004_GetSecondsSinceAppActive(void *linux_side)
{
uint32 _ret;
_ret = ((ISteamUtils*)linux_side)->GetSecondsSinceAppActive();
return (_ret);
}
uint32 cppISteamUtils_SteamUtils004_GetSecondsSinceComputerActive(void *linux_side)
{
uint32 _ret;
_ret = ((ISteamUtils*)linux_side)->GetSecondsSinceComputerActive();
return (_ret);
}
EUniverse cppISteamUtils_SteamUtils004_GetConnectedUniverse(void *linux_side)
{
EUniverse _ret;
_ret = ((ISteamUtils*)linux_side)->GetConnectedUniverse();
return (_ret);
}
uint32 cppISteamUtils_SteamUtils004_GetServerRealTime(void *linux_side)
{
uint32 _ret;
_ret = ((ISteamUtils*)linux_side)->GetServerRealTime();
return (_ret);
}
const char * cppISteamUtils_SteamUtils004_GetIPCountry(void *linux_side)
{
const char *_ret;
_ret = ((ISteamUtils*)linux_side)->GetIPCountry();
return (_ret);
}
bool cppISteamUtils_SteamUtils004_GetImageSize(void *linux_side, int iImage, uint32 *pnWidth, uint32 *pnHeight)
{
bool _ret;
_ret = ((ISteamUtils*)linux_side)->GetImageSize((int)iImage, (uint32 *)pnWidth, (uint32 *)pnHeight);
return (_ret);
}
bool cppISteamUtils_SteamUtils004_GetImageRGBA(void *linux_side, int iImage, uint8 *pubDest, int nDestBufferSize)
{
bool _ret;
_ret = ((ISteamUtils*)linux_side)->GetImageRGBA((int)iImage, (uint8 *)pubDest, (int)nDestBufferSize);
return (_ret);
}
bool cppISteamUtils_SteamUtils004_GetCSERIPPort(void *linux_side, uint32 *unIP, uint16 *usPort)
{
bool _ret;
_ret = ((ISteamUtils*)linux_side)->GetCSERIPPort((uint32 *)unIP, (uint16 *)usPort);
return (_ret);
}
uint8 cppISteamUtils_SteamUtils004_GetCurrentBatteryPower(void *linux_side)
{
uint8 _ret;
_ret = ((ISteamUtils*)linux_side)->GetCurrentBatteryPower();
return (_ret);
}
uint32 cppISteamUtils_SteamUtils004_GetAppID(void *linux_side)
{
uint32 _ret;
_ret = ((ISteamUtils*)linux_side)->GetAppID();
return (_ret);
}
void cppISteamUtils_SteamUtils004_SetOverlayNotificationPosition(void *linux_side, ENotificationPosition eNotificationPosition)
{
((ISteamUtils*)linux_side)->SetOverlayNotificationPosition((ENotificationPosition)eNotificationPosition);
}
bool cppISteamUtils_SteamUtils004_IsAPICallCompleted(void *linux_side, SteamAPICall_t hSteamAPICall, bool *pbFailed)
{
bool _ret;
_ret = ((ISteamUtils*)linux_side)->IsAPICallCompleted((SteamAPICall_t)hSteamAPICall, (bool *)pbFailed);
return (_ret);
}
ESteamAPICallFailure cppISteamUtils_SteamUtils004_GetAPICallFailureReason(void *linux_side, SteamAPICall_t hSteamAPICall)
{
ESteamAPICallFailure _ret;
_ret = ((ISteamUtils*)linux_side)->GetAPICallFailureReason((SteamAPICall_t)hSteamAPICall);
return (_ret);
}
bool cppISteamUtils_SteamUtils004_GetAPICallResult(void *linux_side, SteamAPICall_t hSteamAPICall, void *pCallback, int cubCallback, int iCallbackExpected, bool *pbFailed)
{
bool _ret;
_ret = ((ISteamUtils*)linux_side)->GetAPICallResult((SteamAPICall_t)hSteamAPICall, (void *)pCallback, (int)cubCallback, (int)iCallbackExpected, (bool *)pbFailed);
return (_ret);
}
void cppISteamUtils_SteamUtils004_RunFrame(void *linux_side)
{
((ISteamUtils*)linux_side)->RunFrame();
}
uint32 cppISteamUtils_SteamUtils004_GetIPCCallCount(void *linux_side)
{
uint32 _ret;
_ret = ((ISteamUtils*)linux_side)->GetIPCCallCount();
return (_ret);
}
void cppISteamUtils_SteamUtils004_SetWarningMessageHook(void *linux_side, SteamAPIWarningMessageHook_t pFunction)
{
pFunction = (SteamAPIWarningMessageHook_t)manual_convert_SteamAPIWarningMessageHook_t((void*)pFunction);
((ISteamUtils*)linux_side)->SetWarningMessageHook((SteamAPIWarningMessageHook_t)pFunction);
}
bool cppISteamUtils_SteamUtils004_IsOverlayEnabled(void *linux_side)
{
bool _ret;
_ret = ((ISteamUtils*)linux_side)->IsOverlayEnabled();
return (_ret);
}
#ifdef __cplusplus
}
#endif