mirror of
https://git.suyu.dev/suyu/Yucom.git
synced 2025-12-21 21:26:03 +01:00
parent
cc38f0c8c1
commit
f6871a6b73
233 changed files with 29134 additions and 10252 deletions
|
|
@ -13,52 +13,72 @@ extern "C" {
|
|||
#include "cppISteamUtils_SteamUtils006.h"
|
||||
uint32 cppISteamUtils_SteamUtils006_GetSecondsSinceAppActive(void *linux_side)
|
||||
{
|
||||
return ((ISteamUtils*)linux_side)->GetSecondsSinceAppActive();
|
||||
uint32 _ret;
|
||||
_ret = ((ISteamUtils*)linux_side)->GetSecondsSinceAppActive();
|
||||
return (_ret);
|
||||
}
|
||||
|
||||
uint32 cppISteamUtils_SteamUtils006_GetSecondsSinceComputerActive(void *linux_side)
|
||||
{
|
||||
return ((ISteamUtils*)linux_side)->GetSecondsSinceComputerActive();
|
||||
uint32 _ret;
|
||||
_ret = ((ISteamUtils*)linux_side)->GetSecondsSinceComputerActive();
|
||||
return (_ret);
|
||||
}
|
||||
|
||||
EUniverse cppISteamUtils_SteamUtils006_GetConnectedUniverse(void *linux_side)
|
||||
{
|
||||
return ((ISteamUtils*)linux_side)->GetConnectedUniverse();
|
||||
EUniverse _ret;
|
||||
_ret = ((ISteamUtils*)linux_side)->GetConnectedUniverse();
|
||||
return (_ret);
|
||||
}
|
||||
|
||||
uint32 cppISteamUtils_SteamUtils006_GetServerRealTime(void *linux_side)
|
||||
{
|
||||
return ((ISteamUtils*)linux_side)->GetServerRealTime();
|
||||
uint32 _ret;
|
||||
_ret = ((ISteamUtils*)linux_side)->GetServerRealTime();
|
||||
return (_ret);
|
||||
}
|
||||
|
||||
const char * cppISteamUtils_SteamUtils006_GetIPCountry(void *linux_side)
|
||||
{
|
||||
return ((ISteamUtils*)linux_side)->GetIPCountry();
|
||||
const char * _ret;
|
||||
_ret = ((ISteamUtils*)linux_side)->GetIPCountry();
|
||||
return (_ret);
|
||||
}
|
||||
|
||||
bool cppISteamUtils_SteamUtils006_GetImageSize(void *linux_side, int iImage, uint32 *pnWidth, uint32 *pnHeight)
|
||||
{
|
||||
return ((ISteamUtils*)linux_side)->GetImageSize((int)iImage, (uint32 *)pnWidth, (uint32 *)pnHeight);
|
||||
bool _ret;
|
||||
_ret = ((ISteamUtils*)linux_side)->GetImageSize((int)iImage, (uint32 *)pnWidth, (uint32 *)pnHeight);
|
||||
return (_ret);
|
||||
}
|
||||
|
||||
bool cppISteamUtils_SteamUtils006_GetImageRGBA(void *linux_side, int iImage, uint8 *pubDest, int nDestBufferSize)
|
||||
{
|
||||
return ((ISteamUtils*)linux_side)->GetImageRGBA((int)iImage, (uint8 *)pubDest, (int)nDestBufferSize);
|
||||
bool _ret;
|
||||
_ret = ((ISteamUtils*)linux_side)->GetImageRGBA((int)iImage, (uint8 *)pubDest, (int)nDestBufferSize);
|
||||
return (_ret);
|
||||
}
|
||||
|
||||
bool cppISteamUtils_SteamUtils006_GetCSERIPPort(void *linux_side, uint32 *unIP, uint16 *usPort)
|
||||
{
|
||||
return ((ISteamUtils*)linux_side)->GetCSERIPPort((uint32 *)unIP, (uint16 *)usPort);
|
||||
bool _ret;
|
||||
_ret = ((ISteamUtils*)linux_side)->GetCSERIPPort((uint32 *)unIP, (uint16 *)usPort);
|
||||
return (_ret);
|
||||
}
|
||||
|
||||
uint8 cppISteamUtils_SteamUtils006_GetCurrentBatteryPower(void *linux_side)
|
||||
{
|
||||
return ((ISteamUtils*)linux_side)->GetCurrentBatteryPower();
|
||||
uint8 _ret;
|
||||
_ret = ((ISteamUtils*)linux_side)->GetCurrentBatteryPower();
|
||||
return (_ret);
|
||||
}
|
||||
|
||||
uint32 cppISteamUtils_SteamUtils006_GetAppID(void *linux_side)
|
||||
{
|
||||
return ((ISteamUtils*)linux_side)->GetAppID();
|
||||
uint32 _ret;
|
||||
_ret = ((ISteamUtils*)linux_side)->GetAppID();
|
||||
return (_ret);
|
||||
}
|
||||
|
||||
void cppISteamUtils_SteamUtils006_SetOverlayNotificationPosition(void *linux_side, ENotificationPosition eNotificationPosition)
|
||||
|
|
@ -68,17 +88,23 @@ void cppISteamUtils_SteamUtils006_SetOverlayNotificationPosition(void *linux_sid
|
|||
|
||||
bool cppISteamUtils_SteamUtils006_IsAPICallCompleted(void *linux_side, SteamAPICall_t hSteamAPICall, bool *pbFailed)
|
||||
{
|
||||
return ((ISteamUtils*)linux_side)->IsAPICallCompleted((SteamAPICall_t)hSteamAPICall, (bool *)pbFailed);
|
||||
bool _ret;
|
||||
_ret = ((ISteamUtils*)linux_side)->IsAPICallCompleted((SteamAPICall_t)hSteamAPICall, (bool *)pbFailed);
|
||||
return (_ret);
|
||||
}
|
||||
|
||||
ESteamAPICallFailure cppISteamUtils_SteamUtils006_GetAPICallFailureReason(void *linux_side, SteamAPICall_t hSteamAPICall)
|
||||
{
|
||||
return ((ISteamUtils*)linux_side)->GetAPICallFailureReason((SteamAPICall_t)hSteamAPICall);
|
||||
ESteamAPICallFailure _ret;
|
||||
_ret = ((ISteamUtils*)linux_side)->GetAPICallFailureReason((SteamAPICall_t)hSteamAPICall);
|
||||
return (_ret);
|
||||
}
|
||||
|
||||
bool cppISteamUtils_SteamUtils006_GetAPICallResult(void *linux_side, SteamAPICall_t hSteamAPICall, void *pCallback, int cubCallback, int iCallbackExpected, bool *pbFailed)
|
||||
{
|
||||
return ((ISteamUtils*)linux_side)->GetAPICallResult((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_SteamUtils006_RunFrame(void *linux_side)
|
||||
|
|
@ -88,7 +114,9 @@ void cppISteamUtils_SteamUtils006_RunFrame(void *linux_side)
|
|||
|
||||
uint32 cppISteamUtils_SteamUtils006_GetIPCCallCount(void *linux_side)
|
||||
{
|
||||
return ((ISteamUtils*)linux_side)->GetIPCCallCount();
|
||||
uint32 _ret;
|
||||
_ret = ((ISteamUtils*)linux_side)->GetIPCCallCount();
|
||||
return (_ret);
|
||||
}
|
||||
|
||||
void cppISteamUtils_SteamUtils006_SetWarningMessageHook(void *linux_side, SteamAPIWarningMessageHook_t pFunction)
|
||||
|
|
@ -99,42 +127,58 @@ void cppISteamUtils_SteamUtils006_SetWarningMessageHook(void *linux_side, SteamA
|
|||
|
||||
bool cppISteamUtils_SteamUtils006_IsOverlayEnabled(void *linux_side)
|
||||
{
|
||||
return ((ISteamUtils*)linux_side)->IsOverlayEnabled();
|
||||
bool _ret;
|
||||
_ret = ((ISteamUtils*)linux_side)->IsOverlayEnabled();
|
||||
return (_ret);
|
||||
}
|
||||
|
||||
bool cppISteamUtils_SteamUtils006_BOverlayNeedsPresent(void *linux_side)
|
||||
{
|
||||
return ((ISteamUtils*)linux_side)->BOverlayNeedsPresent();
|
||||
bool _ret;
|
||||
_ret = ((ISteamUtils*)linux_side)->BOverlayNeedsPresent();
|
||||
return (_ret);
|
||||
}
|
||||
|
||||
SteamAPICall_t cppISteamUtils_SteamUtils006_CheckFileSignature(void *linux_side, const char *szFileName)
|
||||
{
|
||||
return ((ISteamUtils*)linux_side)->CheckFileSignature((const char *)szFileName);
|
||||
SteamAPICall_t _ret;
|
||||
_ret = ((ISteamUtils*)linux_side)->CheckFileSignature((const char *)szFileName);
|
||||
return (_ret);
|
||||
}
|
||||
|
||||
bool cppISteamUtils_SteamUtils006_ShowGamepadTextInput(void *linux_side, EGamepadTextInputMode eInputMode, EGamepadTextInputLineMode eLineInputMode, const char *pchDescription, uint32 unCharMax)
|
||||
{
|
||||
return ((ISteamUtils*)linux_side)->ShowGamepadTextInput((EGamepadTextInputMode)eInputMode, (EGamepadTextInputLineMode)eLineInputMode, (const char *)pchDescription, (uint32)unCharMax);
|
||||
bool _ret;
|
||||
_ret = ((ISteamUtils*)linux_side)->ShowGamepadTextInput((EGamepadTextInputMode)eInputMode, (EGamepadTextInputLineMode)eLineInputMode, (const char *)pchDescription, (uint32)unCharMax);
|
||||
return (_ret);
|
||||
}
|
||||
|
||||
uint32 cppISteamUtils_SteamUtils006_GetEnteredGamepadTextLength(void *linux_side)
|
||||
{
|
||||
return ((ISteamUtils*)linux_side)->GetEnteredGamepadTextLength();
|
||||
uint32 _ret;
|
||||
_ret = ((ISteamUtils*)linux_side)->GetEnteredGamepadTextLength();
|
||||
return (_ret);
|
||||
}
|
||||
|
||||
bool cppISteamUtils_SteamUtils006_GetEnteredGamepadTextInput(void *linux_side, char *pchText, uint32 cchText)
|
||||
{
|
||||
return ((ISteamUtils*)linux_side)->GetEnteredGamepadTextInput((char *)pchText, (uint32)cchText);
|
||||
bool _ret;
|
||||
_ret = ((ISteamUtils*)linux_side)->GetEnteredGamepadTextInput((char *)pchText, (uint32)cchText);
|
||||
return (_ret);
|
||||
}
|
||||
|
||||
const char * cppISteamUtils_SteamUtils006_GetSteamUILanguage(void *linux_side)
|
||||
{
|
||||
return ((ISteamUtils*)linux_side)->GetSteamUILanguage();
|
||||
const char * _ret;
|
||||
_ret = ((ISteamUtils*)linux_side)->GetSteamUILanguage();
|
||||
return (_ret);
|
||||
}
|
||||
|
||||
bool cppISteamUtils_SteamUtils006_IsSteamRunningInVR(void *linux_side)
|
||||
{
|
||||
return ((ISteamUtils*)linux_side)->IsSteamRunningInVR();
|
||||
bool _ret;
|
||||
_ret = ((ISteamUtils*)linux_side)->IsSteamRunningInVR();
|
||||
return (_ret);
|
||||
}
|
||||
|
||||
#ifdef __cplusplus
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue