mirror of
https://github.com/ValveSoftware/Proton.git
synced 2025-01-13 23:28:16 +03:00
vrclient: Use int8_t instead of ambiguous sized bool.
CW-Bug-Id: #22729
This commit is contained in:
parent
cd4a31f4e0
commit
fd574a64ca
@ -687,9 +687,9 @@ def declspec(decl, name, prefix, wrapped=False):
|
||||
real_name = real_name.removeprefix("const ")
|
||||
real_name = real_name.removeprefix("vr::")
|
||||
|
||||
if type_name in ('void', 'bool', 'char', 'float', 'double'):
|
||||
if type_name in ('void', 'char', 'float', 'double'):
|
||||
return f'{const}{type_name}{name}'
|
||||
if type_name.startswith(('int', 'long', 'short', 'signed')):
|
||||
if type_name.startswith(('bool', 'int', 'long', 'short', 'signed')):
|
||||
return f'{const}int{decl.get_size() * 8}_t{name}'
|
||||
if type_name.startswith(('uint', 'unsigned')):
|
||||
return f'{const}uint{decl.get_size() * 8}_t{name}'
|
||||
@ -1578,7 +1578,6 @@ with open(u"unixlib_generated.h", "w") as file:
|
||||
out(u'#include <stdarg.h>\n')
|
||||
out(u'#include <stddef.h>\n')
|
||||
out(u'#include <stdint.h>\n')
|
||||
out(u'#include <stdbool.h>\n')
|
||||
out(u'\n')
|
||||
out(u'#ifdef __cplusplus\n')
|
||||
out(u'extern "C" {\n')
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -45,7 +45,7 @@ struct render_model_texture_map
|
||||
|
||||
struct vrclient_init_params
|
||||
{
|
||||
bool _ret;
|
||||
int8_t _ret;
|
||||
HMODULE winevulkan;
|
||||
char *unix_path;
|
||||
};
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -193,7 +193,7 @@ void *CDECL VRClientCoreFactory(const char *name, int *return_code)
|
||||
return create_win_interface( name, params._ret );
|
||||
}
|
||||
|
||||
static bool is_hmd_present_reg(void)
|
||||
static int8_t is_hmd_present_reg(void)
|
||||
{
|
||||
DWORD type, value, wait_status, size;
|
||||
DWORD is_hmd_present = 0;
|
||||
@ -419,7 +419,7 @@ void *__thiscall winIVRClientCore_IVRClientCore_002_GetGenericInterface( struct
|
||||
return params._ret;
|
||||
}
|
||||
|
||||
bool __thiscall winIVRClientCore_IVRClientCore_002_BIsHmdPresent( struct w_steam_iface *_this )
|
||||
int8_t __thiscall winIVRClientCore_IVRClientCore_002_BIsHmdPresent( struct w_steam_iface *_this )
|
||||
{
|
||||
struct IVRClientCore_IVRClientCore_002_BIsHmdPresent_params params = {.linux_side = _this->u_iface};
|
||||
|
||||
@ -499,7 +499,7 @@ void *__thiscall winIVRClientCore_IVRClientCore_003_GetGenericInterface( struct
|
||||
return params._ret;
|
||||
}
|
||||
|
||||
bool __thiscall winIVRClientCore_IVRClientCore_003_BIsHmdPresent( struct w_steam_iface *_this )
|
||||
int8_t __thiscall winIVRClientCore_IVRClientCore_003_BIsHmdPresent( struct w_steam_iface *_this )
|
||||
{
|
||||
struct IVRClientCore_IVRClientCore_003_BIsHmdPresent_params params = {.linux_side = _this->u_iface};
|
||||
|
||||
|
@ -1,7 +1,6 @@
|
||||
#include <stdarg.h>
|
||||
#include <stddef.h>
|
||||
#include <stdint.h>
|
||||
#include <stdbool.h>
|
||||
|
||||
#include <windef.h>
|
||||
#include <winbase.h>
|
||||
|
@ -204,8 +204,8 @@ struct VREvent_Process_t_1210
|
||||
{
|
||||
uint32_t pid;
|
||||
uint32_t oldPid;
|
||||
bool bForced;
|
||||
bool bConnectionLost;
|
||||
int8_t bForced;
|
||||
int8_t bConnectionLost;
|
||||
uint8_t __pad_10[2];
|
||||
};
|
||||
#pragma pack( pop )
|
||||
@ -216,7 +216,7 @@ struct VREvent_Process_t_0912
|
||||
{
|
||||
uint32_t pid;
|
||||
uint32_t oldPid;
|
||||
bool bForced;
|
||||
int8_t bForced;
|
||||
uint8_t __pad_9[3];
|
||||
};
|
||||
#pragma pack( pop )
|
||||
@ -329,7 +329,7 @@ typedef struct VREvent_SeatedZeroPoseReset_t VREvent_SeatedZeroPoseReset_t;
|
||||
#pragma pack( push, 1 )
|
||||
struct VREvent_SeatedZeroPoseReset_t
|
||||
{
|
||||
bool bResetBySystemMenu;
|
||||
int8_t bResetBySystemMenu;
|
||||
};
|
||||
#pragma pack( pop )
|
||||
|
||||
@ -369,7 +369,7 @@ typedef struct VREvent_TouchPadMove_t VREvent_TouchPadMove_t;
|
||||
#pragma pack( push, 4 )
|
||||
struct VREvent_TouchPadMove_t
|
||||
{
|
||||
bool bFingerDown;
|
||||
int8_t bFingerDown;
|
||||
uint8_t __pad_1[3];
|
||||
float flSecondsFingerDown;
|
||||
float fValueXFirst;
|
||||
@ -395,8 +395,8 @@ struct TrackedDevicePose_t
|
||||
HmdVector3_t vVelocity;
|
||||
HmdVector3_t vAngularVelocity;
|
||||
uint32_t eTrackingResult;
|
||||
bool bPoseIsValid;
|
||||
bool bDeviceIsConnected;
|
||||
int8_t bPoseIsValid;
|
||||
int8_t bDeviceIsConnected;
|
||||
uint8_t __pad_78[2];
|
||||
};
|
||||
#pragma pack( pop )
|
||||
@ -1129,8 +1129,8 @@ typedef struct Compositor_OverlaySettings Compositor_OverlaySettings;
|
||||
struct Compositor_OverlaySettings
|
||||
{
|
||||
uint32_t size;
|
||||
bool curved;
|
||||
bool antialias;
|
||||
int8_t curved;
|
||||
int8_t antialias;
|
||||
uint8_t __pad_6[2];
|
||||
float scale;
|
||||
float distance;
|
||||
@ -1155,9 +1155,9 @@ struct Compositor_StageRenderSettings
|
||||
float m_flVignetteInnerRadius;
|
||||
float m_flVignetteOuterRadius;
|
||||
float m_flFresnelStrength;
|
||||
bool m_bBackfaceCulling;
|
||||
bool m_bGreyscale;
|
||||
bool m_bWireframe;
|
||||
int8_t m_bBackfaceCulling;
|
||||
int8_t m_bGreyscale;
|
||||
int8_t m_bWireframe;
|
||||
uint8_t __pad_47[1];
|
||||
};
|
||||
#pragma pack( pop )
|
||||
@ -1261,7 +1261,7 @@ typedef struct RenderModel_ControllerMode_State_t RenderModel_ControllerMode_Sta
|
||||
#pragma pack( push, 1 )
|
||||
struct RenderModel_ControllerMode_State_t
|
||||
{
|
||||
bool bScrollWheelVisible;
|
||||
int8_t bScrollWheelVisible;
|
||||
};
|
||||
#pragma pack( pop )
|
||||
|
||||
@ -2517,7 +2517,7 @@ struct w64_CameraVideoStreamFrame_t_0914
|
||||
double m_flFrameElapsedTime;
|
||||
double m_flFrameCaptureTime;
|
||||
uint64_t m_nFrameCaptureTicks;
|
||||
bool m_bPoseIsValid;
|
||||
int8_t m_bPoseIsValid;
|
||||
uint8_t __pad_73[3];
|
||||
HmdMatrix34_t m_matDeviceToAbsoluteTracking;
|
||||
W64_ARRAY(float, 4, m_Pad);
|
||||
@ -2546,7 +2546,7 @@ struct u64_CameraVideoStreamFrame_t_0914
|
||||
double m_flFrameElapsedTime;
|
||||
double m_flFrameCaptureTime;
|
||||
uint64_t m_nFrameCaptureTicks;
|
||||
bool m_bPoseIsValid;
|
||||
int8_t m_bPoseIsValid;
|
||||
uint8_t __pad_69[3];
|
||||
HmdMatrix34_t m_matDeviceToAbsoluteTracking;
|
||||
U64_ARRAY(float, 4, m_Pad);
|
||||
@ -2575,7 +2575,7 @@ struct w32_CameraVideoStreamFrame_t_0914
|
||||
double m_flFrameElapsedTime;
|
||||
double m_flFrameCaptureTime;
|
||||
uint64_t m_nFrameCaptureTicks;
|
||||
bool m_bPoseIsValid;
|
||||
int8_t m_bPoseIsValid;
|
||||
uint8_t __pad_73[3];
|
||||
HmdMatrix34_t m_matDeviceToAbsoluteTracking;
|
||||
W32_ARRAY(float, 4, m_Pad);
|
||||
@ -2603,7 +2603,7 @@ struct u32_CameraVideoStreamFrame_t_0914
|
||||
double m_flFrameElapsedTime;
|
||||
double m_flFrameCaptureTime;
|
||||
uint64_t m_nFrameCaptureTicks;
|
||||
bool m_bPoseIsValid;
|
||||
int8_t m_bPoseIsValid;
|
||||
uint8_t __pad_69[3];
|
||||
HmdMatrix34_t m_matDeviceToAbsoluteTracking;
|
||||
U32_ARRAY(float, 4, m_Pad);
|
||||
@ -2636,7 +2636,7 @@ struct w64_CameraVideoStreamFrame_t_0912
|
||||
uint32_t m_nImageDataSize;
|
||||
double m_flFrameElapsedTime;
|
||||
double m_flFrameCaptureTime;
|
||||
bool m_bPoseIsValid;
|
||||
int8_t m_bPoseIsValid;
|
||||
uint8_t __pad_49[3];
|
||||
HmdMatrix34_t m_matDeviceToAbsoluteTracking;
|
||||
W64_ARRAY(float, 4, m_Pad);
|
||||
@ -2661,7 +2661,7 @@ struct u64_CameraVideoStreamFrame_t_0912
|
||||
uint32_t m_nImageDataSize;
|
||||
double m_flFrameElapsedTime;
|
||||
double m_flFrameCaptureTime;
|
||||
bool m_bPoseIsValid;
|
||||
int8_t m_bPoseIsValid;
|
||||
uint8_t __pad_49[3];
|
||||
HmdMatrix34_t m_matDeviceToAbsoluteTracking;
|
||||
U64_ARRAY(float, 4, m_Pad);
|
||||
@ -2685,7 +2685,7 @@ struct w32_CameraVideoStreamFrame_t_0912
|
||||
uint32_t m_nImageDataSize;
|
||||
double m_flFrameElapsedTime;
|
||||
double m_flFrameCaptureTime;
|
||||
bool m_bPoseIsValid;
|
||||
int8_t m_bPoseIsValid;
|
||||
uint8_t __pad_49[3];
|
||||
HmdMatrix34_t m_matDeviceToAbsoluteTracking;
|
||||
W32_ARRAY(float, 4, m_Pad);
|
||||
@ -3741,7 +3741,7 @@ struct u_IVRSpatialAnchors_IVRSpatialAnchors_001
|
||||
#pragma pack( push, 8 )
|
||||
struct w64_InputAnalogActionData_t
|
||||
{
|
||||
bool bActive;
|
||||
int8_t bActive;
|
||||
uint8_t __pad_1[7];
|
||||
uint64_t activeOrigin;
|
||||
float x;
|
||||
@ -3758,7 +3758,7 @@ struct w64_InputAnalogActionData_t
|
||||
#pragma pack( push, 8 )
|
||||
struct w32_InputAnalogActionData_t
|
||||
{
|
||||
bool bActive;
|
||||
int8_t bActive;
|
||||
uint8_t __pad_1[7];
|
||||
uint64_t activeOrigin;
|
||||
float x;
|
||||
@ -3778,7 +3778,7 @@ struct w32_InputAnalogActionData_t
|
||||
#pragma pack( push, 4 )
|
||||
struct u32_InputAnalogActionData_t
|
||||
{
|
||||
bool bActive;
|
||||
int8_t bActive;
|
||||
uint8_t __pad_1[3];
|
||||
uint64_t activeOrigin;
|
||||
float x;
|
||||
@ -3806,11 +3806,11 @@ typedef u64_InputAnalogActionData_t u_InputAnalogActionData_t;
|
||||
#pragma pack( push, 8 )
|
||||
struct w64_InputDigitalActionData_t
|
||||
{
|
||||
bool bActive;
|
||||
int8_t bActive;
|
||||
uint8_t __pad_1[7];
|
||||
uint64_t activeOrigin;
|
||||
bool bState;
|
||||
bool bChanged;
|
||||
int8_t bState;
|
||||
int8_t bChanged;
|
||||
uint8_t __pad_18[2];
|
||||
float fUpdateTime;
|
||||
};
|
||||
@ -3819,11 +3819,11 @@ struct w64_InputDigitalActionData_t
|
||||
#pragma pack( push, 8 )
|
||||
struct w32_InputDigitalActionData_t
|
||||
{
|
||||
bool bActive;
|
||||
int8_t bActive;
|
||||
uint8_t __pad_1[7];
|
||||
uint64_t activeOrigin;
|
||||
bool bState;
|
||||
bool bChanged;
|
||||
int8_t bState;
|
||||
int8_t bChanged;
|
||||
uint8_t __pad_18[2];
|
||||
float fUpdateTime;
|
||||
#ifdef __cplusplus
|
||||
@ -3835,11 +3835,11 @@ struct w32_InputDigitalActionData_t
|
||||
#pragma pack( push, 4 )
|
||||
struct u32_InputDigitalActionData_t
|
||||
{
|
||||
bool bActive;
|
||||
int8_t bActive;
|
||||
uint8_t __pad_1[3];
|
||||
uint64_t activeOrigin;
|
||||
bool bState;
|
||||
bool bChanged;
|
||||
int8_t bState;
|
||||
int8_t bChanged;
|
||||
uint8_t __pad_14[2];
|
||||
float fUpdateTime;
|
||||
#ifdef __cplusplus
|
||||
@ -3904,7 +3904,7 @@ typedef u64_InputOriginInfo_t u_InputOriginInfo_t;
|
||||
#pragma pack( push, 8 )
|
||||
struct w64_InputPoseActionData_t
|
||||
{
|
||||
bool bActive;
|
||||
int8_t bActive;
|
||||
uint8_t __pad_1[7];
|
||||
uint64_t activeOrigin;
|
||||
TrackedDevicePose_t pose;
|
||||
@ -3914,7 +3914,7 @@ struct w64_InputPoseActionData_t
|
||||
#pragma pack( push, 8 )
|
||||
struct w32_InputPoseActionData_t
|
||||
{
|
||||
bool bActive;
|
||||
int8_t bActive;
|
||||
uint8_t __pad_1[7];
|
||||
uint64_t activeOrigin;
|
||||
TrackedDevicePose_t pose;
|
||||
@ -3927,7 +3927,7 @@ struct w32_InputPoseActionData_t
|
||||
#pragma pack( push, 4 )
|
||||
struct u32_InputPoseActionData_t
|
||||
{
|
||||
bool bActive;
|
||||
int8_t bActive;
|
||||
uint8_t __pad_1[3];
|
||||
uint64_t activeOrigin;
|
||||
TrackedDevicePose_t pose;
|
||||
@ -3949,7 +3949,7 @@ typedef u64_InputPoseActionData_t u_InputPoseActionData_t;
|
||||
#pragma pack( push, 8 )
|
||||
struct w64_InputSkeletalActionData_t_113b
|
||||
{
|
||||
bool bActive;
|
||||
int8_t bActive;
|
||||
uint8_t __pad_1[7];
|
||||
uint64_t activeOrigin;
|
||||
};
|
||||
@ -3958,7 +3958,7 @@ struct w64_InputSkeletalActionData_t_113b
|
||||
#pragma pack( push, 8 )
|
||||
struct w32_InputSkeletalActionData_t_113b
|
||||
{
|
||||
bool bActive;
|
||||
int8_t bActive;
|
||||
uint8_t __pad_1[7];
|
||||
uint64_t activeOrigin;
|
||||
#ifdef __cplusplus
|
||||
@ -3970,7 +3970,7 @@ struct w32_InputSkeletalActionData_t_113b
|
||||
#pragma pack( push, 4 )
|
||||
struct u32_InputSkeletalActionData_t_113b
|
||||
{
|
||||
bool bActive;
|
||||
int8_t bActive;
|
||||
uint8_t __pad_1[3];
|
||||
uint64_t activeOrigin;
|
||||
#ifdef __cplusplus
|
||||
@ -3991,7 +3991,7 @@ typedef u64_InputSkeletalActionData_t_113b u_InputSkeletalActionData_t_113b;
|
||||
#pragma pack( push, 8 )
|
||||
struct w64_InputSkeletalActionData_t_1016
|
||||
{
|
||||
bool bActive;
|
||||
int8_t bActive;
|
||||
uint8_t __pad_1[7];
|
||||
uint64_t activeOrigin;
|
||||
uint32_t boneCount;
|
||||
@ -4002,7 +4002,7 @@ struct w64_InputSkeletalActionData_t_1016
|
||||
#pragma pack( push, 8 )
|
||||
struct w32_InputSkeletalActionData_t_1016
|
||||
{
|
||||
bool bActive;
|
||||
int8_t bActive;
|
||||
uint8_t __pad_1[7];
|
||||
uint64_t activeOrigin;
|
||||
uint32_t boneCount;
|
||||
@ -4016,7 +4016,7 @@ struct w32_InputSkeletalActionData_t_1016
|
||||
#pragma pack( push, 4 )
|
||||
struct u32_InputSkeletalActionData_t_1016
|
||||
{
|
||||
bool bActive;
|
||||
int8_t bActive;
|
||||
uint8_t __pad_1[3];
|
||||
uint64_t activeOrigin;
|
||||
uint32_t boneCount;
|
||||
@ -4038,7 +4038,7 @@ typedef u64_InputSkeletalActionData_t_1016 u_InputSkeletalActionData_t_1016;
|
||||
#pragma pack( push, 8 )
|
||||
struct w64_InputSkeletonActionData_t
|
||||
{
|
||||
bool bActive;
|
||||
int8_t bActive;
|
||||
uint8_t __pad_1[7];
|
||||
uint64_t activeOrigin;
|
||||
};
|
||||
@ -4047,7 +4047,7 @@ struct w64_InputSkeletonActionData_t
|
||||
#pragma pack( push, 8 )
|
||||
struct w32_InputSkeletonActionData_t
|
||||
{
|
||||
bool bActive;
|
||||
int8_t bActive;
|
||||
uint8_t __pad_1[7];
|
||||
uint64_t activeOrigin;
|
||||
#ifdef __cplusplus
|
||||
@ -4059,7 +4059,7 @@ struct w32_InputSkeletonActionData_t
|
||||
#pragma pack( push, 4 )
|
||||
struct u32_InputSkeletonActionData_t
|
||||
{
|
||||
bool bActive;
|
||||
int8_t bActive;
|
||||
uint8_t __pad_1[3];
|
||||
uint64_t activeOrigin;
|
||||
#ifdef __cplusplus
|
||||
|
@ -297,7 +297,7 @@ void __thiscall winIVRRenderModels_IVRRenderModels_006_FreeTextureD3D11( struct
|
||||
|
||||
/* LoadRenderModel(_Async) / FreeRenderModel */
|
||||
|
||||
bool __thiscall winIVRRenderModels_IVRRenderModels_002_LoadRenderModel( struct w_steam_iface *_this, const char *pchRenderModelName,
|
||||
int8_t __thiscall winIVRRenderModels_IVRRenderModels_002_LoadRenderModel( struct w_steam_iface *_this, const char *pchRenderModelName,
|
||||
w_RenderModel_t_0912 **ppRenderModel )
|
||||
{
|
||||
struct render_model *model;
|
||||
@ -415,7 +415,7 @@ void __thiscall winIVRRenderModels_IVRRenderModels_006_FreeRenderModel( struct w
|
||||
|
||||
/* LoadTexture(_Async) / FreeTexture */
|
||||
|
||||
bool __thiscall winIVRRenderModels_IVRRenderModels_002_LoadTexture( struct w_steam_iface *_this, int32_t textureId,
|
||||
int8_t __thiscall winIVRRenderModels_IVRRenderModels_002_LoadTexture( struct w_steam_iface *_this, int32_t textureId,
|
||||
w_RenderModel_TextureMap_t_090 **ppTexture )
|
||||
{
|
||||
struct render_model_texture_map *map;
|
||||
|
@ -30,7 +30,7 @@ DEFINE_THISCALL_WRAPPER(winIVRApplications_IVRApplications_001_GetTransitionStat
|
||||
DEFINE_THISCALL_WRAPPER(winIVRApplications_IVRApplications_001_PerformApplicationPrelaunchCheck, 8)
|
||||
DEFINE_THISCALL_WRAPPER(winIVRApplications_IVRApplications_001_GetApplicationsTransitionStateNameFromEnum, 8)
|
||||
|
||||
uint32_t __thiscall winIVRApplications_IVRApplications_001_AddApplicationManifest(struct w_steam_iface *_this, const char *pchApplicationManifestFullPath, bool bTemporary)
|
||||
uint32_t __thiscall winIVRApplications_IVRApplications_001_AddApplicationManifest(struct w_steam_iface *_this, const char *pchApplicationManifestFullPath, int8_t bTemporary)
|
||||
{
|
||||
struct IVRApplications_IVRApplications_001_AddApplicationManifest_params params =
|
||||
{
|
||||
@ -55,7 +55,7 @@ uint32_t __thiscall winIVRApplications_IVRApplications_001_RemoveApplicationMani
|
||||
return params._ret;
|
||||
}
|
||||
|
||||
bool __thiscall winIVRApplications_IVRApplications_001_IsApplicationInstalled(struct w_steam_iface *_this, const char *pchAppKey)
|
||||
int8_t __thiscall winIVRApplications_IVRApplications_001_IsApplicationInstalled(struct w_steam_iface *_this, const char *pchAppKey)
|
||||
{
|
||||
struct IVRApplications_IVRApplications_001_IsApplicationInstalled_params params =
|
||||
{
|
||||
@ -183,7 +183,7 @@ uint32_t __thiscall winIVRApplications_IVRApplications_001_GetApplicationPropert
|
||||
return params._ret;
|
||||
}
|
||||
|
||||
bool __thiscall winIVRApplications_IVRApplications_001_GetApplicationPropertyBool(struct w_steam_iface *_this, const char *pchAppKey, uint32_t eProperty, uint32_t *peError)
|
||||
int8_t __thiscall winIVRApplications_IVRApplications_001_GetApplicationPropertyBool(struct w_steam_iface *_this, const char *pchAppKey, uint32_t eProperty, uint32_t *peError)
|
||||
{
|
||||
struct IVRApplications_IVRApplications_001_GetApplicationPropertyBool_params params =
|
||||
{
|
||||
@ -222,7 +222,7 @@ uint32_t __thiscall winIVRApplications_IVRApplications_001_SetHomeApplication(st
|
||||
return params._ret;
|
||||
}
|
||||
|
||||
uint32_t __thiscall winIVRApplications_IVRApplications_001_SetApplicationAutoLaunch(struct w_steam_iface *_this, const char *pchAppKey, bool bAutoLaunch)
|
||||
uint32_t __thiscall winIVRApplications_IVRApplications_001_SetApplicationAutoLaunch(struct w_steam_iface *_this, const char *pchAppKey, int8_t bAutoLaunch)
|
||||
{
|
||||
struct IVRApplications_IVRApplications_001_SetApplicationAutoLaunch_params params =
|
||||
{
|
||||
@ -235,7 +235,7 @@ uint32_t __thiscall winIVRApplications_IVRApplications_001_SetApplicationAutoLau
|
||||
return params._ret;
|
||||
}
|
||||
|
||||
bool __thiscall winIVRApplications_IVRApplications_001_GetApplicationAutoLaunch(struct w_steam_iface *_this, const char *pchAppKey)
|
||||
int8_t __thiscall winIVRApplications_IVRApplications_001_GetApplicationAutoLaunch(struct w_steam_iface *_this, const char *pchAppKey)
|
||||
{
|
||||
struct IVRApplications_IVRApplications_001_GetApplicationAutoLaunch_params params =
|
||||
{
|
||||
@ -405,7 +405,7 @@ DEFINE_THISCALL_WRAPPER(winIVRApplications_IVRApplications_002_PerformApplicatio
|
||||
DEFINE_THISCALL_WRAPPER(winIVRApplications_IVRApplications_002_GetApplicationsTransitionStateNameFromEnum, 8)
|
||||
DEFINE_THISCALL_WRAPPER(winIVRApplications_IVRApplications_002_IsQuitUserPromptRequested, 4)
|
||||
|
||||
uint32_t __thiscall winIVRApplications_IVRApplications_002_AddApplicationManifest(struct w_steam_iface *_this, const char *pchApplicationManifestFullPath, bool bTemporary)
|
||||
uint32_t __thiscall winIVRApplications_IVRApplications_002_AddApplicationManifest(struct w_steam_iface *_this, const char *pchApplicationManifestFullPath, int8_t bTemporary)
|
||||
{
|
||||
struct IVRApplications_IVRApplications_002_AddApplicationManifest_params params =
|
||||
{
|
||||
@ -430,7 +430,7 @@ uint32_t __thiscall winIVRApplications_IVRApplications_002_RemoveApplicationMani
|
||||
return params._ret;
|
||||
}
|
||||
|
||||
bool __thiscall winIVRApplications_IVRApplications_002_IsApplicationInstalled(struct w_steam_iface *_this, const char *pchAppKey)
|
||||
int8_t __thiscall winIVRApplications_IVRApplications_002_IsApplicationInstalled(struct w_steam_iface *_this, const char *pchAppKey)
|
||||
{
|
||||
struct IVRApplications_IVRApplications_002_IsApplicationInstalled_params params =
|
||||
{
|
||||
@ -558,7 +558,7 @@ uint32_t __thiscall winIVRApplications_IVRApplications_002_GetApplicationPropert
|
||||
return params._ret;
|
||||
}
|
||||
|
||||
bool __thiscall winIVRApplications_IVRApplications_002_GetApplicationPropertyBool(struct w_steam_iface *_this, const char *pchAppKey, uint32_t eProperty, uint32_t *peError)
|
||||
int8_t __thiscall winIVRApplications_IVRApplications_002_GetApplicationPropertyBool(struct w_steam_iface *_this, const char *pchAppKey, uint32_t eProperty, uint32_t *peError)
|
||||
{
|
||||
struct IVRApplications_IVRApplications_002_GetApplicationPropertyBool_params params =
|
||||
{
|
||||
@ -572,7 +572,7 @@ bool __thiscall winIVRApplications_IVRApplications_002_GetApplicationPropertyBoo
|
||||
return params._ret;
|
||||
}
|
||||
|
||||
uint32_t __thiscall winIVRApplications_IVRApplications_002_SetApplicationAutoLaunch(struct w_steam_iface *_this, const char *pchAppKey, bool bAutoLaunch)
|
||||
uint32_t __thiscall winIVRApplications_IVRApplications_002_SetApplicationAutoLaunch(struct w_steam_iface *_this, const char *pchAppKey, int8_t bAutoLaunch)
|
||||
{
|
||||
struct IVRApplications_IVRApplications_002_SetApplicationAutoLaunch_params params =
|
||||
{
|
||||
@ -585,7 +585,7 @@ uint32_t __thiscall winIVRApplications_IVRApplications_002_SetApplicationAutoLau
|
||||
return params._ret;
|
||||
}
|
||||
|
||||
bool __thiscall winIVRApplications_IVRApplications_002_GetApplicationAutoLaunch(struct w_steam_iface *_this, const char *pchAppKey)
|
||||
int8_t __thiscall winIVRApplications_IVRApplications_002_GetApplicationAutoLaunch(struct w_steam_iface *_this, const char *pchAppKey)
|
||||
{
|
||||
struct IVRApplications_IVRApplications_002_GetApplicationAutoLaunch_params params =
|
||||
{
|
||||
@ -645,7 +645,7 @@ const char * __thiscall winIVRApplications_IVRApplications_002_GetApplicationsTr
|
||||
return params._ret;
|
||||
}
|
||||
|
||||
bool __thiscall winIVRApplications_IVRApplications_002_IsQuitUserPromptRequested(struct w_steam_iface *_this)
|
||||
int8_t __thiscall winIVRApplications_IVRApplications_002_IsQuitUserPromptRequested(struct w_steam_iface *_this)
|
||||
{
|
||||
struct IVRApplications_IVRApplications_002_IsQuitUserPromptRequested_params params =
|
||||
{
|
||||
@ -765,7 +765,7 @@ DEFINE_THISCALL_WRAPPER(winIVRApplications_IVRApplications_003_PerformApplicatio
|
||||
DEFINE_THISCALL_WRAPPER(winIVRApplications_IVRApplications_003_GetApplicationsTransitionStateNameFromEnum, 8)
|
||||
DEFINE_THISCALL_WRAPPER(winIVRApplications_IVRApplications_003_IsQuitUserPromptRequested, 4)
|
||||
|
||||
uint32_t __thiscall winIVRApplications_IVRApplications_003_AddApplicationManifest(struct w_steam_iface *_this, const char *pchApplicationManifestFullPath, bool bTemporary)
|
||||
uint32_t __thiscall winIVRApplications_IVRApplications_003_AddApplicationManifest(struct w_steam_iface *_this, const char *pchApplicationManifestFullPath, int8_t bTemporary)
|
||||
{
|
||||
struct IVRApplications_IVRApplications_003_AddApplicationManifest_params params =
|
||||
{
|
||||
@ -790,7 +790,7 @@ uint32_t __thiscall winIVRApplications_IVRApplications_003_RemoveApplicationMani
|
||||
return params._ret;
|
||||
}
|
||||
|
||||
bool __thiscall winIVRApplications_IVRApplications_003_IsApplicationInstalled(struct w_steam_iface *_this, const char *pchAppKey)
|
||||
int8_t __thiscall winIVRApplications_IVRApplications_003_IsApplicationInstalled(struct w_steam_iface *_this, const char *pchAppKey)
|
||||
{
|
||||
struct IVRApplications_IVRApplications_003_IsApplicationInstalled_params params =
|
||||
{
|
||||
@ -918,7 +918,7 @@ uint32_t __thiscall winIVRApplications_IVRApplications_003_GetApplicationPropert
|
||||
return params._ret;
|
||||
}
|
||||
|
||||
bool __thiscall winIVRApplications_IVRApplications_003_GetApplicationPropertyBool(struct w_steam_iface *_this, const char *pchAppKey, uint32_t eProperty, uint32_t *peError)
|
||||
int8_t __thiscall winIVRApplications_IVRApplications_003_GetApplicationPropertyBool(struct w_steam_iface *_this, const char *pchAppKey, uint32_t eProperty, uint32_t *peError)
|
||||
{
|
||||
struct IVRApplications_IVRApplications_003_GetApplicationPropertyBool_params params =
|
||||
{
|
||||
@ -946,7 +946,7 @@ uint64_t __thiscall winIVRApplications_IVRApplications_003_GetApplicationPropert
|
||||
return params._ret;
|
||||
}
|
||||
|
||||
uint32_t __thiscall winIVRApplications_IVRApplications_003_SetApplicationAutoLaunch(struct w_steam_iface *_this, const char *pchAppKey, bool bAutoLaunch)
|
||||
uint32_t __thiscall winIVRApplications_IVRApplications_003_SetApplicationAutoLaunch(struct w_steam_iface *_this, const char *pchAppKey, int8_t bAutoLaunch)
|
||||
{
|
||||
struct IVRApplications_IVRApplications_003_SetApplicationAutoLaunch_params params =
|
||||
{
|
||||
@ -959,7 +959,7 @@ uint32_t __thiscall winIVRApplications_IVRApplications_003_SetApplicationAutoLau
|
||||
return params._ret;
|
||||
}
|
||||
|
||||
bool __thiscall winIVRApplications_IVRApplications_003_GetApplicationAutoLaunch(struct w_steam_iface *_this, const char *pchAppKey)
|
||||
int8_t __thiscall winIVRApplications_IVRApplications_003_GetApplicationAutoLaunch(struct w_steam_iface *_this, const char *pchAppKey)
|
||||
{
|
||||
struct IVRApplications_IVRApplications_003_GetApplicationAutoLaunch_params params =
|
||||
{
|
||||
@ -1019,7 +1019,7 @@ const char * __thiscall winIVRApplications_IVRApplications_003_GetApplicationsTr
|
||||
return params._ret;
|
||||
}
|
||||
|
||||
bool __thiscall winIVRApplications_IVRApplications_003_IsQuitUserPromptRequested(struct w_steam_iface *_this)
|
||||
int8_t __thiscall winIVRApplications_IVRApplications_003_IsQuitUserPromptRequested(struct w_steam_iface *_this)
|
||||
{
|
||||
struct IVRApplications_IVRApplications_003_IsQuitUserPromptRequested_params params =
|
||||
{
|
||||
@ -1143,7 +1143,7 @@ DEFINE_THISCALL_WRAPPER(winIVRApplications_IVRApplications_004_GetApplicationsTr
|
||||
DEFINE_THISCALL_WRAPPER(winIVRApplications_IVRApplications_004_IsQuitUserPromptRequested, 4)
|
||||
DEFINE_THISCALL_WRAPPER(winIVRApplications_IVRApplications_004_LaunchInternalProcess, 16)
|
||||
|
||||
uint32_t __thiscall winIVRApplications_IVRApplications_004_AddApplicationManifest(struct w_steam_iface *_this, const char *pchApplicationManifestFullPath, bool bTemporary)
|
||||
uint32_t __thiscall winIVRApplications_IVRApplications_004_AddApplicationManifest(struct w_steam_iface *_this, const char *pchApplicationManifestFullPath, int8_t bTemporary)
|
||||
{
|
||||
struct IVRApplications_IVRApplications_004_AddApplicationManifest_params params =
|
||||
{
|
||||
@ -1168,7 +1168,7 @@ uint32_t __thiscall winIVRApplications_IVRApplications_004_RemoveApplicationMani
|
||||
return params._ret;
|
||||
}
|
||||
|
||||
bool __thiscall winIVRApplications_IVRApplications_004_IsApplicationInstalled(struct w_steam_iface *_this, const char *pchAppKey)
|
||||
int8_t __thiscall winIVRApplications_IVRApplications_004_IsApplicationInstalled(struct w_steam_iface *_this, const char *pchAppKey)
|
||||
{
|
||||
struct IVRApplications_IVRApplications_004_IsApplicationInstalled_params params =
|
||||
{
|
||||
@ -1243,7 +1243,7 @@ uint32_t __thiscall winIVRApplications_IVRApplications_004_LaunchDashboardOverla
|
||||
return params._ret;
|
||||
}
|
||||
|
||||
bool __thiscall winIVRApplications_IVRApplications_004_CancelApplicationLaunch(struct w_steam_iface *_this, const char *pchAppKey)
|
||||
int8_t __thiscall winIVRApplications_IVRApplications_004_CancelApplicationLaunch(struct w_steam_iface *_this, const char *pchAppKey)
|
||||
{
|
||||
struct IVRApplications_IVRApplications_004_CancelApplicationLaunch_params params =
|
||||
{
|
||||
@ -1308,7 +1308,7 @@ uint32_t __thiscall winIVRApplications_IVRApplications_004_GetApplicationPropert
|
||||
return params._ret;
|
||||
}
|
||||
|
||||
bool __thiscall winIVRApplications_IVRApplications_004_GetApplicationPropertyBool(struct w_steam_iface *_this, const char *pchAppKey, uint32_t eProperty, uint32_t *peError)
|
||||
int8_t __thiscall winIVRApplications_IVRApplications_004_GetApplicationPropertyBool(struct w_steam_iface *_this, const char *pchAppKey, uint32_t eProperty, uint32_t *peError)
|
||||
{
|
||||
struct IVRApplications_IVRApplications_004_GetApplicationPropertyBool_params params =
|
||||
{
|
||||
@ -1336,7 +1336,7 @@ uint64_t __thiscall winIVRApplications_IVRApplications_004_GetApplicationPropert
|
||||
return params._ret;
|
||||
}
|
||||
|
||||
uint32_t __thiscall winIVRApplications_IVRApplications_004_SetApplicationAutoLaunch(struct w_steam_iface *_this, const char *pchAppKey, bool bAutoLaunch)
|
||||
uint32_t __thiscall winIVRApplications_IVRApplications_004_SetApplicationAutoLaunch(struct w_steam_iface *_this, const char *pchAppKey, int8_t bAutoLaunch)
|
||||
{
|
||||
struct IVRApplications_IVRApplications_004_SetApplicationAutoLaunch_params params =
|
||||
{
|
||||
@ -1349,7 +1349,7 @@ uint32_t __thiscall winIVRApplications_IVRApplications_004_SetApplicationAutoLau
|
||||
return params._ret;
|
||||
}
|
||||
|
||||
bool __thiscall winIVRApplications_IVRApplications_004_GetApplicationAutoLaunch(struct w_steam_iface *_this, const char *pchAppKey)
|
||||
int8_t __thiscall winIVRApplications_IVRApplications_004_GetApplicationAutoLaunch(struct w_steam_iface *_this, const char *pchAppKey)
|
||||
{
|
||||
struct IVRApplications_IVRApplications_004_GetApplicationAutoLaunch_params params =
|
||||
{
|
||||
@ -1409,7 +1409,7 @@ const char * __thiscall winIVRApplications_IVRApplications_004_GetApplicationsTr
|
||||
return params._ret;
|
||||
}
|
||||
|
||||
bool __thiscall winIVRApplications_IVRApplications_004_IsQuitUserPromptRequested(struct w_steam_iface *_this)
|
||||
int8_t __thiscall winIVRApplications_IVRApplications_004_IsQuitUserPromptRequested(struct w_steam_iface *_this)
|
||||
{
|
||||
struct IVRApplications_IVRApplications_004_IsQuitUserPromptRequested_params params =
|
||||
{
|
||||
@ -1552,7 +1552,7 @@ DEFINE_THISCALL_WRAPPER(winIVRApplications_IVRApplications_005_GetApplicationsTr
|
||||
DEFINE_THISCALL_WRAPPER(winIVRApplications_IVRApplications_005_IsQuitUserPromptRequested, 4)
|
||||
DEFINE_THISCALL_WRAPPER(winIVRApplications_IVRApplications_005_LaunchInternalProcess, 16)
|
||||
|
||||
uint32_t __thiscall winIVRApplications_IVRApplications_005_AddApplicationManifest(struct w_steam_iface *_this, const char *pchApplicationManifestFullPath, bool bTemporary)
|
||||
uint32_t __thiscall winIVRApplications_IVRApplications_005_AddApplicationManifest(struct w_steam_iface *_this, const char *pchApplicationManifestFullPath, int8_t bTemporary)
|
||||
{
|
||||
struct IVRApplications_IVRApplications_005_AddApplicationManifest_params params =
|
||||
{
|
||||
@ -1577,7 +1577,7 @@ uint32_t __thiscall winIVRApplications_IVRApplications_005_RemoveApplicationMani
|
||||
return params._ret;
|
||||
}
|
||||
|
||||
bool __thiscall winIVRApplications_IVRApplications_005_IsApplicationInstalled(struct w_steam_iface *_this, const char *pchAppKey)
|
||||
int8_t __thiscall winIVRApplications_IVRApplications_005_IsApplicationInstalled(struct w_steam_iface *_this, const char *pchAppKey)
|
||||
{
|
||||
struct IVRApplications_IVRApplications_005_IsApplicationInstalled_params params =
|
||||
{
|
||||
@ -1667,7 +1667,7 @@ uint32_t __thiscall winIVRApplications_IVRApplications_005_LaunchDashboardOverla
|
||||
return params._ret;
|
||||
}
|
||||
|
||||
bool __thiscall winIVRApplications_IVRApplications_005_CancelApplicationLaunch(struct w_steam_iface *_this, const char *pchAppKey)
|
||||
int8_t __thiscall winIVRApplications_IVRApplications_005_CancelApplicationLaunch(struct w_steam_iface *_this, const char *pchAppKey)
|
||||
{
|
||||
struct IVRApplications_IVRApplications_005_CancelApplicationLaunch_params params =
|
||||
{
|
||||
@ -1732,7 +1732,7 @@ uint32_t __thiscall winIVRApplications_IVRApplications_005_GetApplicationPropert
|
||||
return params._ret;
|
||||
}
|
||||
|
||||
bool __thiscall winIVRApplications_IVRApplications_005_GetApplicationPropertyBool(struct w_steam_iface *_this, const char *pchAppKey, uint32_t eProperty, uint32_t *peError)
|
||||
int8_t __thiscall winIVRApplications_IVRApplications_005_GetApplicationPropertyBool(struct w_steam_iface *_this, const char *pchAppKey, uint32_t eProperty, uint32_t *peError)
|
||||
{
|
||||
struct IVRApplications_IVRApplications_005_GetApplicationPropertyBool_params params =
|
||||
{
|
||||
@ -1760,7 +1760,7 @@ uint64_t __thiscall winIVRApplications_IVRApplications_005_GetApplicationPropert
|
||||
return params._ret;
|
||||
}
|
||||
|
||||
uint32_t __thiscall winIVRApplications_IVRApplications_005_SetApplicationAutoLaunch(struct w_steam_iface *_this, const char *pchAppKey, bool bAutoLaunch)
|
||||
uint32_t __thiscall winIVRApplications_IVRApplications_005_SetApplicationAutoLaunch(struct w_steam_iface *_this, const char *pchAppKey, int8_t bAutoLaunch)
|
||||
{
|
||||
struct IVRApplications_IVRApplications_005_SetApplicationAutoLaunch_params params =
|
||||
{
|
||||
@ -1773,7 +1773,7 @@ uint32_t __thiscall winIVRApplications_IVRApplications_005_SetApplicationAutoLau
|
||||
return params._ret;
|
||||
}
|
||||
|
||||
bool __thiscall winIVRApplications_IVRApplications_005_GetApplicationAutoLaunch(struct w_steam_iface *_this, const char *pchAppKey)
|
||||
int8_t __thiscall winIVRApplications_IVRApplications_005_GetApplicationAutoLaunch(struct w_steam_iface *_this, const char *pchAppKey)
|
||||
{
|
||||
struct IVRApplications_IVRApplications_005_GetApplicationAutoLaunch_params params =
|
||||
{
|
||||
@ -1833,7 +1833,7 @@ const char * __thiscall winIVRApplications_IVRApplications_005_GetApplicationsTr
|
||||
return params._ret;
|
||||
}
|
||||
|
||||
bool __thiscall winIVRApplications_IVRApplications_005_IsQuitUserPromptRequested(struct w_steam_iface *_this)
|
||||
int8_t __thiscall winIVRApplications_IVRApplications_005_IsQuitUserPromptRequested(struct w_steam_iface *_this)
|
||||
{
|
||||
struct IVRApplications_IVRApplications_005_IsQuitUserPromptRequested_params params =
|
||||
{
|
||||
@ -1985,7 +1985,7 @@ DEFINE_THISCALL_WRAPPER(winIVRApplications_IVRApplications_006_IsQuitUserPromptR
|
||||
DEFINE_THISCALL_WRAPPER(winIVRApplications_IVRApplications_006_LaunchInternalProcess, 16)
|
||||
DEFINE_THISCALL_WRAPPER(winIVRApplications_IVRApplications_006_GetCurrentSceneProcessId, 4)
|
||||
|
||||
uint32_t __thiscall winIVRApplications_IVRApplications_006_AddApplicationManifest(struct w_steam_iface *_this, const char *pchApplicationManifestFullPath, bool bTemporary)
|
||||
uint32_t __thiscall winIVRApplications_IVRApplications_006_AddApplicationManifest(struct w_steam_iface *_this, const char *pchApplicationManifestFullPath, int8_t bTemporary)
|
||||
{
|
||||
struct IVRApplications_IVRApplications_006_AddApplicationManifest_params params =
|
||||
{
|
||||
@ -2010,7 +2010,7 @@ uint32_t __thiscall winIVRApplications_IVRApplications_006_RemoveApplicationMani
|
||||
return params._ret;
|
||||
}
|
||||
|
||||
bool __thiscall winIVRApplications_IVRApplications_006_IsApplicationInstalled(struct w_steam_iface *_this, const char *pchAppKey)
|
||||
int8_t __thiscall winIVRApplications_IVRApplications_006_IsApplicationInstalled(struct w_steam_iface *_this, const char *pchAppKey)
|
||||
{
|
||||
struct IVRApplications_IVRApplications_006_IsApplicationInstalled_params params =
|
||||
{
|
||||
@ -2113,7 +2113,7 @@ uint32_t __thiscall winIVRApplications_IVRApplications_006_LaunchDashboardOverla
|
||||
return params._ret;
|
||||
}
|
||||
|
||||
bool __thiscall winIVRApplications_IVRApplications_006_CancelApplicationLaunch(struct w_steam_iface *_this, const char *pchAppKey)
|
||||
int8_t __thiscall winIVRApplications_IVRApplications_006_CancelApplicationLaunch(struct w_steam_iface *_this, const char *pchAppKey)
|
||||
{
|
||||
struct IVRApplications_IVRApplications_006_CancelApplicationLaunch_params params =
|
||||
{
|
||||
@ -2178,7 +2178,7 @@ uint32_t __thiscall winIVRApplications_IVRApplications_006_GetApplicationPropert
|
||||
return params._ret;
|
||||
}
|
||||
|
||||
bool __thiscall winIVRApplications_IVRApplications_006_GetApplicationPropertyBool(struct w_steam_iface *_this, const char *pchAppKey, uint32_t eProperty, uint32_t *peError)
|
||||
int8_t __thiscall winIVRApplications_IVRApplications_006_GetApplicationPropertyBool(struct w_steam_iface *_this, const char *pchAppKey, uint32_t eProperty, uint32_t *peError)
|
||||
{
|
||||
struct IVRApplications_IVRApplications_006_GetApplicationPropertyBool_params params =
|
||||
{
|
||||
@ -2206,7 +2206,7 @@ uint64_t __thiscall winIVRApplications_IVRApplications_006_GetApplicationPropert
|
||||
return params._ret;
|
||||
}
|
||||
|
||||
uint32_t __thiscall winIVRApplications_IVRApplications_006_SetApplicationAutoLaunch(struct w_steam_iface *_this, const char *pchAppKey, bool bAutoLaunch)
|
||||
uint32_t __thiscall winIVRApplications_IVRApplications_006_SetApplicationAutoLaunch(struct w_steam_iface *_this, const char *pchAppKey, int8_t bAutoLaunch)
|
||||
{
|
||||
struct IVRApplications_IVRApplications_006_SetApplicationAutoLaunch_params params =
|
||||
{
|
||||
@ -2219,7 +2219,7 @@ uint32_t __thiscall winIVRApplications_IVRApplications_006_SetApplicationAutoLau
|
||||
return params._ret;
|
||||
}
|
||||
|
||||
bool __thiscall winIVRApplications_IVRApplications_006_GetApplicationAutoLaunch(struct w_steam_iface *_this, const char *pchAppKey)
|
||||
int8_t __thiscall winIVRApplications_IVRApplications_006_GetApplicationAutoLaunch(struct w_steam_iface *_this, const char *pchAppKey)
|
||||
{
|
||||
struct IVRApplications_IVRApplications_006_GetApplicationAutoLaunch_params params =
|
||||
{
|
||||
@ -2244,7 +2244,7 @@ uint32_t __thiscall winIVRApplications_IVRApplications_006_SetDefaultApplication
|
||||
return params._ret;
|
||||
}
|
||||
|
||||
bool __thiscall winIVRApplications_IVRApplications_006_GetDefaultApplicationForMimeType(struct w_steam_iface *_this, const char *pchMimeType, char *pchAppKeyBuffer, uint32_t unAppKeyBufferLen)
|
||||
int8_t __thiscall winIVRApplications_IVRApplications_006_GetDefaultApplicationForMimeType(struct w_steam_iface *_this, const char *pchMimeType, char *pchAppKeyBuffer, uint32_t unAppKeyBufferLen)
|
||||
{
|
||||
struct IVRApplications_IVRApplications_006_GetDefaultApplicationForMimeType_params params =
|
||||
{
|
||||
@ -2258,7 +2258,7 @@ bool __thiscall winIVRApplications_IVRApplications_006_GetDefaultApplicationForM
|
||||
return params._ret;
|
||||
}
|
||||
|
||||
bool __thiscall winIVRApplications_IVRApplications_006_GetApplicationSupportedMimeTypes(struct w_steam_iface *_this, const char *pchAppKey, char *pchMimeTypesBuffer, uint32_t unMimeTypesBuffer)
|
||||
int8_t __thiscall winIVRApplications_IVRApplications_006_GetApplicationSupportedMimeTypes(struct w_steam_iface *_this, const char *pchAppKey, char *pchMimeTypesBuffer, uint32_t unMimeTypesBuffer)
|
||||
{
|
||||
struct IVRApplications_IVRApplications_006_GetApplicationSupportedMimeTypes_params params =
|
||||
{
|
||||
@ -2348,7 +2348,7 @@ const char * __thiscall winIVRApplications_IVRApplications_006_GetApplicationsTr
|
||||
return params._ret;
|
||||
}
|
||||
|
||||
bool __thiscall winIVRApplications_IVRApplications_006_IsQuitUserPromptRequested(struct w_steam_iface *_this)
|
||||
int8_t __thiscall winIVRApplications_IVRApplications_006_IsQuitUserPromptRequested(struct w_steam_iface *_this)
|
||||
{
|
||||
struct IVRApplications_IVRApplications_006_IsQuitUserPromptRequested_params params =
|
||||
{
|
||||
@ -2524,7 +2524,7 @@ DEFINE_THISCALL_WRAPPER(winIVRApplications_IVRApplications_007_GetSceneApplicati
|
||||
DEFINE_THISCALL_WRAPPER(winIVRApplications_IVRApplications_007_LaunchInternalProcess, 16)
|
||||
DEFINE_THISCALL_WRAPPER(winIVRApplications_IVRApplications_007_GetCurrentSceneProcessId, 4)
|
||||
|
||||
uint32_t __thiscall winIVRApplications_IVRApplications_007_AddApplicationManifest(struct w_steam_iface *_this, const char *pchApplicationManifestFullPath, bool bTemporary)
|
||||
uint32_t __thiscall winIVRApplications_IVRApplications_007_AddApplicationManifest(struct w_steam_iface *_this, const char *pchApplicationManifestFullPath, int8_t bTemporary)
|
||||
{
|
||||
struct IVRApplications_IVRApplications_007_AddApplicationManifest_params params =
|
||||
{
|
||||
@ -2549,7 +2549,7 @@ uint32_t __thiscall winIVRApplications_IVRApplications_007_RemoveApplicationMani
|
||||
return params._ret;
|
||||
}
|
||||
|
||||
bool __thiscall winIVRApplications_IVRApplications_007_IsApplicationInstalled(struct w_steam_iface *_this, const char *pchAppKey)
|
||||
int8_t __thiscall winIVRApplications_IVRApplications_007_IsApplicationInstalled(struct w_steam_iface *_this, const char *pchAppKey)
|
||||
{
|
||||
struct IVRApplications_IVRApplications_007_IsApplicationInstalled_params params =
|
||||
{
|
||||
@ -2652,7 +2652,7 @@ uint32_t __thiscall winIVRApplications_IVRApplications_007_LaunchDashboardOverla
|
||||
return params._ret;
|
||||
}
|
||||
|
||||
bool __thiscall winIVRApplications_IVRApplications_007_CancelApplicationLaunch(struct w_steam_iface *_this, const char *pchAppKey)
|
||||
int8_t __thiscall winIVRApplications_IVRApplications_007_CancelApplicationLaunch(struct w_steam_iface *_this, const char *pchAppKey)
|
||||
{
|
||||
struct IVRApplications_IVRApplications_007_CancelApplicationLaunch_params params =
|
||||
{
|
||||
@ -2717,7 +2717,7 @@ uint32_t __thiscall winIVRApplications_IVRApplications_007_GetApplicationPropert
|
||||
return params._ret;
|
||||
}
|
||||
|
||||
bool __thiscall winIVRApplications_IVRApplications_007_GetApplicationPropertyBool(struct w_steam_iface *_this, const char *pchAppKey, uint32_t eProperty, uint32_t *peError)
|
||||
int8_t __thiscall winIVRApplications_IVRApplications_007_GetApplicationPropertyBool(struct w_steam_iface *_this, const char *pchAppKey, uint32_t eProperty, uint32_t *peError)
|
||||
{
|
||||
struct IVRApplications_IVRApplications_007_GetApplicationPropertyBool_params params =
|
||||
{
|
||||
@ -2745,7 +2745,7 @@ uint64_t __thiscall winIVRApplications_IVRApplications_007_GetApplicationPropert
|
||||
return params._ret;
|
||||
}
|
||||
|
||||
uint32_t __thiscall winIVRApplications_IVRApplications_007_SetApplicationAutoLaunch(struct w_steam_iface *_this, const char *pchAppKey, bool bAutoLaunch)
|
||||
uint32_t __thiscall winIVRApplications_IVRApplications_007_SetApplicationAutoLaunch(struct w_steam_iface *_this, const char *pchAppKey, int8_t bAutoLaunch)
|
||||
{
|
||||
struct IVRApplications_IVRApplications_007_SetApplicationAutoLaunch_params params =
|
||||
{
|
||||
@ -2758,7 +2758,7 @@ uint32_t __thiscall winIVRApplications_IVRApplications_007_SetApplicationAutoLau
|
||||
return params._ret;
|
||||
}
|
||||
|
||||
bool __thiscall winIVRApplications_IVRApplications_007_GetApplicationAutoLaunch(struct w_steam_iface *_this, const char *pchAppKey)
|
||||
int8_t __thiscall winIVRApplications_IVRApplications_007_GetApplicationAutoLaunch(struct w_steam_iface *_this, const char *pchAppKey)
|
||||
{
|
||||
struct IVRApplications_IVRApplications_007_GetApplicationAutoLaunch_params params =
|
||||
{
|
||||
@ -2783,7 +2783,7 @@ uint32_t __thiscall winIVRApplications_IVRApplications_007_SetDefaultApplication
|
||||
return params._ret;
|
||||
}
|
||||
|
||||
bool __thiscall winIVRApplications_IVRApplications_007_GetDefaultApplicationForMimeType(struct w_steam_iface *_this, const char *pchMimeType, char *pchAppKeyBuffer, uint32_t unAppKeyBufferLen)
|
||||
int8_t __thiscall winIVRApplications_IVRApplications_007_GetDefaultApplicationForMimeType(struct w_steam_iface *_this, const char *pchMimeType, char *pchAppKeyBuffer, uint32_t unAppKeyBufferLen)
|
||||
{
|
||||
struct IVRApplications_IVRApplications_007_GetDefaultApplicationForMimeType_params params =
|
||||
{
|
||||
@ -2797,7 +2797,7 @@ bool __thiscall winIVRApplications_IVRApplications_007_GetDefaultApplicationForM
|
||||
return params._ret;
|
||||
}
|
||||
|
||||
bool __thiscall winIVRApplications_IVRApplications_007_GetApplicationSupportedMimeTypes(struct w_steam_iface *_this, const char *pchAppKey, char *pchMimeTypesBuffer, uint32_t unMimeTypesBuffer)
|
||||
int8_t __thiscall winIVRApplications_IVRApplications_007_GetApplicationSupportedMimeTypes(struct w_steam_iface *_this, const char *pchAppKey, char *pchMimeTypesBuffer, uint32_t unMimeTypesBuffer)
|
||||
{
|
||||
struct IVRApplications_IVRApplications_007_GetApplicationSupportedMimeTypes_params params =
|
||||
{
|
||||
|
@ -29,7 +29,7 @@ uint32_t __thiscall winIVRChaperone_IVRChaperone_002_GetCalibrationState(struct
|
||||
return params._ret;
|
||||
}
|
||||
|
||||
bool __thiscall winIVRChaperone_IVRChaperone_002_GetSoftBoundsInfo(struct w_steam_iface *_this, ChaperoneSoftBoundsInfo_t *pInfo)
|
||||
int8_t __thiscall winIVRChaperone_IVRChaperone_002_GetSoftBoundsInfo(struct w_steam_iface *_this, ChaperoneSoftBoundsInfo_t *pInfo)
|
||||
{
|
||||
struct IVRChaperone_IVRChaperone_002_GetSoftBoundsInfo_params params =
|
||||
{
|
||||
@ -41,7 +41,7 @@ bool __thiscall winIVRChaperone_IVRChaperone_002_GetSoftBoundsInfo(struct w_stea
|
||||
return params._ret;
|
||||
}
|
||||
|
||||
bool __thiscall winIVRChaperone_IVRChaperone_002_GetHardBoundsInfo(struct w_steam_iface *_this, HmdQuad_t *pQuadsBuffer, uint32_t *punQuadsCount)
|
||||
int8_t __thiscall winIVRChaperone_IVRChaperone_002_GetHardBoundsInfo(struct w_steam_iface *_this, HmdQuad_t *pQuadsBuffer, uint32_t *punQuadsCount)
|
||||
{
|
||||
struct IVRChaperone_IVRChaperone_002_GetHardBoundsInfo_params params =
|
||||
{
|
||||
@ -54,7 +54,7 @@ bool __thiscall winIVRChaperone_IVRChaperone_002_GetHardBoundsInfo(struct w_stea
|
||||
return params._ret;
|
||||
}
|
||||
|
||||
bool __thiscall winIVRChaperone_IVRChaperone_002_GetSeatedBoundsInfo(struct w_steam_iface *_this, ChaperoneSeatedBoundsInfo_t *pInfo)
|
||||
int8_t __thiscall winIVRChaperone_IVRChaperone_002_GetSeatedBoundsInfo(struct w_steam_iface *_this, ChaperoneSeatedBoundsInfo_t *pInfo)
|
||||
{
|
||||
struct IVRChaperone_IVRChaperone_002_GetSeatedBoundsInfo_params params =
|
||||
{
|
||||
@ -99,7 +99,7 @@ void __thiscall winIVRChaperone_IVRChaperone_002_GetBoundsColor(struct w_steam_i
|
||||
VRCLIENT_CALL( IVRChaperone_IVRChaperone_002_GetBoundsColor, ¶ms );
|
||||
}
|
||||
|
||||
bool __thiscall winIVRChaperone_IVRChaperone_002_AreBoundsVisible(struct w_steam_iface *_this)
|
||||
int8_t __thiscall winIVRChaperone_IVRChaperone_002_AreBoundsVisible(struct w_steam_iface *_this)
|
||||
{
|
||||
struct IVRChaperone_IVRChaperone_002_AreBoundsVisible_params params =
|
||||
{
|
||||
@ -110,7 +110,7 @@ bool __thiscall winIVRChaperone_IVRChaperone_002_AreBoundsVisible(struct w_steam
|
||||
return params._ret;
|
||||
}
|
||||
|
||||
void __thiscall winIVRChaperone_IVRChaperone_002_ForceBoundsVisible(struct w_steam_iface *_this, bool bForce)
|
||||
void __thiscall winIVRChaperone_IVRChaperone_002_ForceBoundsVisible(struct w_steam_iface *_this, int8_t bForce)
|
||||
{
|
||||
struct IVRChaperone_IVRChaperone_002_ForceBoundsVisible_params params =
|
||||
{
|
||||
@ -206,7 +206,7 @@ uint32_t __thiscall winIVRChaperone_IVRChaperone_003_GetCalibrationState(struct
|
||||
return params._ret;
|
||||
}
|
||||
|
||||
bool __thiscall winIVRChaperone_IVRChaperone_003_GetPlayAreaSize(struct w_steam_iface *_this, float *pSizeX, float *pSizeZ)
|
||||
int8_t __thiscall winIVRChaperone_IVRChaperone_003_GetPlayAreaSize(struct w_steam_iface *_this, float *pSizeX, float *pSizeZ)
|
||||
{
|
||||
struct IVRChaperone_IVRChaperone_003_GetPlayAreaSize_params params =
|
||||
{
|
||||
@ -219,7 +219,7 @@ bool __thiscall winIVRChaperone_IVRChaperone_003_GetPlayAreaSize(struct w_steam_
|
||||
return params._ret;
|
||||
}
|
||||
|
||||
bool __thiscall winIVRChaperone_IVRChaperone_003_GetPlayAreaRect(struct w_steam_iface *_this, HmdQuad_t *rect)
|
||||
int8_t __thiscall winIVRChaperone_IVRChaperone_003_GetPlayAreaRect(struct w_steam_iface *_this, HmdQuad_t *rect)
|
||||
{
|
||||
struct IVRChaperone_IVRChaperone_003_GetPlayAreaRect_params params =
|
||||
{
|
||||
@ -266,7 +266,7 @@ void __thiscall winIVRChaperone_IVRChaperone_003_GetBoundsColor(struct w_steam_i
|
||||
VRCLIENT_CALL( IVRChaperone_IVRChaperone_003_GetBoundsColor, ¶ms );
|
||||
}
|
||||
|
||||
bool __thiscall winIVRChaperone_IVRChaperone_003_AreBoundsVisible(struct w_steam_iface *_this)
|
||||
int8_t __thiscall winIVRChaperone_IVRChaperone_003_AreBoundsVisible(struct w_steam_iface *_this)
|
||||
{
|
||||
struct IVRChaperone_IVRChaperone_003_AreBoundsVisible_params params =
|
||||
{
|
||||
@ -277,7 +277,7 @@ bool __thiscall winIVRChaperone_IVRChaperone_003_AreBoundsVisible(struct w_steam
|
||||
return params._ret;
|
||||
}
|
||||
|
||||
void __thiscall winIVRChaperone_IVRChaperone_003_ForceBoundsVisible(struct w_steam_iface *_this, bool bForce)
|
||||
void __thiscall winIVRChaperone_IVRChaperone_003_ForceBoundsVisible(struct w_steam_iface *_this, int8_t bForce)
|
||||
{
|
||||
struct IVRChaperone_IVRChaperone_003_ForceBoundsVisible_params params =
|
||||
{
|
||||
@ -372,7 +372,7 @@ uint32_t __thiscall winIVRChaperone_IVRChaperone_004_GetCalibrationState(struct
|
||||
return params._ret;
|
||||
}
|
||||
|
||||
bool __thiscall winIVRChaperone_IVRChaperone_004_GetPlayAreaSize(struct w_steam_iface *_this, float *pSizeX, float *pSizeZ)
|
||||
int8_t __thiscall winIVRChaperone_IVRChaperone_004_GetPlayAreaSize(struct w_steam_iface *_this, float *pSizeX, float *pSizeZ)
|
||||
{
|
||||
struct IVRChaperone_IVRChaperone_004_GetPlayAreaSize_params params =
|
||||
{
|
||||
@ -385,7 +385,7 @@ bool __thiscall winIVRChaperone_IVRChaperone_004_GetPlayAreaSize(struct w_steam_
|
||||
return params._ret;
|
||||
}
|
||||
|
||||
bool __thiscall winIVRChaperone_IVRChaperone_004_GetPlayAreaRect(struct w_steam_iface *_this, HmdQuad_t *rect)
|
||||
int8_t __thiscall winIVRChaperone_IVRChaperone_004_GetPlayAreaRect(struct w_steam_iface *_this, HmdQuad_t *rect)
|
||||
{
|
||||
struct IVRChaperone_IVRChaperone_004_GetPlayAreaRect_params params =
|
||||
{
|
||||
@ -432,7 +432,7 @@ void __thiscall winIVRChaperone_IVRChaperone_004_GetBoundsColor(struct w_steam_i
|
||||
VRCLIENT_CALL( IVRChaperone_IVRChaperone_004_GetBoundsColor, ¶ms );
|
||||
}
|
||||
|
||||
bool __thiscall winIVRChaperone_IVRChaperone_004_AreBoundsVisible(struct w_steam_iface *_this)
|
||||
int8_t __thiscall winIVRChaperone_IVRChaperone_004_AreBoundsVisible(struct w_steam_iface *_this)
|
||||
{
|
||||
struct IVRChaperone_IVRChaperone_004_AreBoundsVisible_params params =
|
||||
{
|
||||
@ -443,7 +443,7 @@ bool __thiscall winIVRChaperone_IVRChaperone_004_AreBoundsVisible(struct w_steam
|
||||
return params._ret;
|
||||
}
|
||||
|
||||
void __thiscall winIVRChaperone_IVRChaperone_004_ForceBoundsVisible(struct w_steam_iface *_this, bool bForce)
|
||||
void __thiscall winIVRChaperone_IVRChaperone_004_ForceBoundsVisible(struct w_steam_iface *_this, int8_t bForce)
|
||||
{
|
||||
struct IVRChaperone_IVRChaperone_004_ForceBoundsVisible_params params =
|
||||
{
|
||||
|
@ -25,7 +25,7 @@ DEFINE_THISCALL_WRAPPER(winIVRChaperoneSetup_IVRChaperoneSetup_004_GetLiveSeated
|
||||
DEFINE_THISCALL_WRAPPER(winIVRChaperoneSetup_IVRChaperoneSetup_004_SetWorkingWallTagInfo, 12)
|
||||
DEFINE_THISCALL_WRAPPER(winIVRChaperoneSetup_IVRChaperoneSetup_004_GetLiveWallTagInfo, 12)
|
||||
|
||||
bool __thiscall winIVRChaperoneSetup_IVRChaperoneSetup_004_CommitWorkingCopy(struct w_steam_iface *_this, uint32_t configFile)
|
||||
int8_t __thiscall winIVRChaperoneSetup_IVRChaperoneSetup_004_CommitWorkingCopy(struct w_steam_iface *_this, uint32_t configFile)
|
||||
{
|
||||
struct IVRChaperoneSetup_IVRChaperoneSetup_004_CommitWorkingCopy_params params =
|
||||
{
|
||||
@ -47,7 +47,7 @@ void __thiscall winIVRChaperoneSetup_IVRChaperoneSetup_004_RevertWorkingCopy(str
|
||||
VRCLIENT_CALL( IVRChaperoneSetup_IVRChaperoneSetup_004_RevertWorkingCopy, ¶ms );
|
||||
}
|
||||
|
||||
bool __thiscall winIVRChaperoneSetup_IVRChaperoneSetup_004_GetWorkingPlayAreaSize(struct w_steam_iface *_this, float *pSizeX, float *pSizeZ)
|
||||
int8_t __thiscall winIVRChaperoneSetup_IVRChaperoneSetup_004_GetWorkingPlayAreaSize(struct w_steam_iface *_this, float *pSizeX, float *pSizeZ)
|
||||
{
|
||||
struct IVRChaperoneSetup_IVRChaperoneSetup_004_GetWorkingPlayAreaSize_params params =
|
||||
{
|
||||
@ -60,7 +60,7 @@ bool __thiscall winIVRChaperoneSetup_IVRChaperoneSetup_004_GetWorkingPlayAreaSiz
|
||||
return params._ret;
|
||||
}
|
||||
|
||||
bool __thiscall winIVRChaperoneSetup_IVRChaperoneSetup_004_GetWorkingPlayAreaRect(struct w_steam_iface *_this, HmdQuad_t *rect)
|
||||
int8_t __thiscall winIVRChaperoneSetup_IVRChaperoneSetup_004_GetWorkingPlayAreaRect(struct w_steam_iface *_this, HmdQuad_t *rect)
|
||||
{
|
||||
struct IVRChaperoneSetup_IVRChaperoneSetup_004_GetWorkingPlayAreaRect_params params =
|
||||
{
|
||||
@ -72,7 +72,7 @@ bool __thiscall winIVRChaperoneSetup_IVRChaperoneSetup_004_GetWorkingPlayAreaRec
|
||||
return params._ret;
|
||||
}
|
||||
|
||||
bool __thiscall winIVRChaperoneSetup_IVRChaperoneSetup_004_GetWorkingCollisionBoundsInfo(struct w_steam_iface *_this, HmdQuad_t *pQuadsBuffer, uint32_t *punQuadsCount)
|
||||
int8_t __thiscall winIVRChaperoneSetup_IVRChaperoneSetup_004_GetWorkingCollisionBoundsInfo(struct w_steam_iface *_this, HmdQuad_t *pQuadsBuffer, uint32_t *punQuadsCount)
|
||||
{
|
||||
struct IVRChaperoneSetup_IVRChaperoneSetup_004_GetWorkingCollisionBoundsInfo_params params =
|
||||
{
|
||||
@ -85,7 +85,7 @@ bool __thiscall winIVRChaperoneSetup_IVRChaperoneSetup_004_GetWorkingCollisionBo
|
||||
return params._ret;
|
||||
}
|
||||
|
||||
bool __thiscall winIVRChaperoneSetup_IVRChaperoneSetup_004_GetLiveCollisionBoundsInfo(struct w_steam_iface *_this, HmdQuad_t *pQuadsBuffer, uint32_t *punQuadsCount)
|
||||
int8_t __thiscall winIVRChaperoneSetup_IVRChaperoneSetup_004_GetLiveCollisionBoundsInfo(struct w_steam_iface *_this, HmdQuad_t *pQuadsBuffer, uint32_t *punQuadsCount)
|
||||
{
|
||||
struct IVRChaperoneSetup_IVRChaperoneSetup_004_GetLiveCollisionBoundsInfo_params params =
|
||||
{
|
||||
@ -98,7 +98,7 @@ bool __thiscall winIVRChaperoneSetup_IVRChaperoneSetup_004_GetLiveCollisionBound
|
||||
return params._ret;
|
||||
}
|
||||
|
||||
bool __thiscall winIVRChaperoneSetup_IVRChaperoneSetup_004_GetWorkingSeatedZeroPoseToRawTrackingPose(struct w_steam_iface *_this, HmdMatrix34_t *pmatSeatedZeroPoseToRawTrackingPose)
|
||||
int8_t __thiscall winIVRChaperoneSetup_IVRChaperoneSetup_004_GetWorkingSeatedZeroPoseToRawTrackingPose(struct w_steam_iface *_this, HmdMatrix34_t *pmatSeatedZeroPoseToRawTrackingPose)
|
||||
{
|
||||
struct IVRChaperoneSetup_IVRChaperoneSetup_004_GetWorkingSeatedZeroPoseToRawTrackingPose_params params =
|
||||
{
|
||||
@ -110,7 +110,7 @@ bool __thiscall winIVRChaperoneSetup_IVRChaperoneSetup_004_GetWorkingSeatedZeroP
|
||||
return params._ret;
|
||||
}
|
||||
|
||||
bool __thiscall winIVRChaperoneSetup_IVRChaperoneSetup_004_GetWorkingStandingZeroPoseToRawTrackingPose(struct w_steam_iface *_this, HmdMatrix34_t *pmatStandingZeroPoseToRawTrackingPose)
|
||||
int8_t __thiscall winIVRChaperoneSetup_IVRChaperoneSetup_004_GetWorkingStandingZeroPoseToRawTrackingPose(struct w_steam_iface *_this, HmdMatrix34_t *pmatStandingZeroPoseToRawTrackingPose)
|
||||
{
|
||||
struct IVRChaperoneSetup_IVRChaperoneSetup_004_GetWorkingStandingZeroPoseToRawTrackingPose_params params =
|
||||
{
|
||||
@ -179,7 +179,7 @@ void __thiscall winIVRChaperoneSetup_IVRChaperoneSetup_004_ReloadFromDisk(struct
|
||||
VRCLIENT_CALL( IVRChaperoneSetup_IVRChaperoneSetup_004_ReloadFromDisk, ¶ms );
|
||||
}
|
||||
|
||||
bool __thiscall winIVRChaperoneSetup_IVRChaperoneSetup_004_GetLiveSeatedZeroPoseToRawTrackingPose(struct w_steam_iface *_this, HmdMatrix34_t *pmatSeatedZeroPoseToRawTrackingPose)
|
||||
int8_t __thiscall winIVRChaperoneSetup_IVRChaperoneSetup_004_GetLiveSeatedZeroPoseToRawTrackingPose(struct w_steam_iface *_this, HmdMatrix34_t *pmatSeatedZeroPoseToRawTrackingPose)
|
||||
{
|
||||
struct IVRChaperoneSetup_IVRChaperoneSetup_004_GetLiveSeatedZeroPoseToRawTrackingPose_params params =
|
||||
{
|
||||
@ -203,7 +203,7 @@ void __thiscall winIVRChaperoneSetup_IVRChaperoneSetup_004_SetWorkingWallTagInfo
|
||||
VRCLIENT_CALL( IVRChaperoneSetup_IVRChaperoneSetup_004_SetWorkingWallTagInfo, ¶ms );
|
||||
}
|
||||
|
||||
bool __thiscall winIVRChaperoneSetup_IVRChaperoneSetup_004_GetLiveWallTagInfo(struct w_steam_iface *_this, uint8_t *pTagsBuffer, uint32_t *punTagCount)
|
||||
int8_t __thiscall winIVRChaperoneSetup_IVRChaperoneSetup_004_GetLiveWallTagInfo(struct w_steam_iface *_this, uint8_t *pTagsBuffer, uint32_t *punTagCount)
|
||||
{
|
||||
struct IVRChaperoneSetup_IVRChaperoneSetup_004_GetLiveWallTagInfo_params params =
|
||||
{
|
||||
@ -316,7 +316,7 @@ DEFINE_THISCALL_WRAPPER(winIVRChaperoneSetup_IVRChaperoneSetup_005_GetLivePhysic
|
||||
DEFINE_THISCALL_WRAPPER(winIVRChaperoneSetup_IVRChaperoneSetup_005_ExportLiveToBuffer, 12)
|
||||
DEFINE_THISCALL_WRAPPER(winIVRChaperoneSetup_IVRChaperoneSetup_005_ImportFromBufferToWorking, 12)
|
||||
|
||||
bool __thiscall winIVRChaperoneSetup_IVRChaperoneSetup_005_CommitWorkingCopy(struct w_steam_iface *_this, uint32_t configFile)
|
||||
int8_t __thiscall winIVRChaperoneSetup_IVRChaperoneSetup_005_CommitWorkingCopy(struct w_steam_iface *_this, uint32_t configFile)
|
||||
{
|
||||
struct IVRChaperoneSetup_IVRChaperoneSetup_005_CommitWorkingCopy_params params =
|
||||
{
|
||||
@ -338,7 +338,7 @@ void __thiscall winIVRChaperoneSetup_IVRChaperoneSetup_005_RevertWorkingCopy(str
|
||||
VRCLIENT_CALL( IVRChaperoneSetup_IVRChaperoneSetup_005_RevertWorkingCopy, ¶ms );
|
||||
}
|
||||
|
||||
bool __thiscall winIVRChaperoneSetup_IVRChaperoneSetup_005_GetWorkingPlayAreaSize(struct w_steam_iface *_this, float *pSizeX, float *pSizeZ)
|
||||
int8_t __thiscall winIVRChaperoneSetup_IVRChaperoneSetup_005_GetWorkingPlayAreaSize(struct w_steam_iface *_this, float *pSizeX, float *pSizeZ)
|
||||
{
|
||||
struct IVRChaperoneSetup_IVRChaperoneSetup_005_GetWorkingPlayAreaSize_params params =
|
||||
{
|
||||
@ -351,7 +351,7 @@ bool __thiscall winIVRChaperoneSetup_IVRChaperoneSetup_005_GetWorkingPlayAreaSiz
|
||||
return params._ret;
|
||||
}
|
||||
|
||||
bool __thiscall winIVRChaperoneSetup_IVRChaperoneSetup_005_GetWorkingPlayAreaRect(struct w_steam_iface *_this, HmdQuad_t *rect)
|
||||
int8_t __thiscall winIVRChaperoneSetup_IVRChaperoneSetup_005_GetWorkingPlayAreaRect(struct w_steam_iface *_this, HmdQuad_t *rect)
|
||||
{
|
||||
struct IVRChaperoneSetup_IVRChaperoneSetup_005_GetWorkingPlayAreaRect_params params =
|
||||
{
|
||||
@ -363,7 +363,7 @@ bool __thiscall winIVRChaperoneSetup_IVRChaperoneSetup_005_GetWorkingPlayAreaRec
|
||||
return params._ret;
|
||||
}
|
||||
|
||||
bool __thiscall winIVRChaperoneSetup_IVRChaperoneSetup_005_GetWorkingCollisionBoundsInfo(struct w_steam_iface *_this, HmdQuad_t *pQuadsBuffer, uint32_t *punQuadsCount)
|
||||
int8_t __thiscall winIVRChaperoneSetup_IVRChaperoneSetup_005_GetWorkingCollisionBoundsInfo(struct w_steam_iface *_this, HmdQuad_t *pQuadsBuffer, uint32_t *punQuadsCount)
|
||||
{
|
||||
struct IVRChaperoneSetup_IVRChaperoneSetup_005_GetWorkingCollisionBoundsInfo_params params =
|
||||
{
|
||||
@ -376,7 +376,7 @@ bool __thiscall winIVRChaperoneSetup_IVRChaperoneSetup_005_GetWorkingCollisionBo
|
||||
return params._ret;
|
||||
}
|
||||
|
||||
bool __thiscall winIVRChaperoneSetup_IVRChaperoneSetup_005_GetLiveCollisionBoundsInfo(struct w_steam_iface *_this, HmdQuad_t *pQuadsBuffer, uint32_t *punQuadsCount)
|
||||
int8_t __thiscall winIVRChaperoneSetup_IVRChaperoneSetup_005_GetLiveCollisionBoundsInfo(struct w_steam_iface *_this, HmdQuad_t *pQuadsBuffer, uint32_t *punQuadsCount)
|
||||
{
|
||||
struct IVRChaperoneSetup_IVRChaperoneSetup_005_GetLiveCollisionBoundsInfo_params params =
|
||||
{
|
||||
@ -389,7 +389,7 @@ bool __thiscall winIVRChaperoneSetup_IVRChaperoneSetup_005_GetLiveCollisionBound
|
||||
return params._ret;
|
||||
}
|
||||
|
||||
bool __thiscall winIVRChaperoneSetup_IVRChaperoneSetup_005_GetWorkingSeatedZeroPoseToRawTrackingPose(struct w_steam_iface *_this, HmdMatrix34_t *pmatSeatedZeroPoseToRawTrackingPose)
|
||||
int8_t __thiscall winIVRChaperoneSetup_IVRChaperoneSetup_005_GetWorkingSeatedZeroPoseToRawTrackingPose(struct w_steam_iface *_this, HmdMatrix34_t *pmatSeatedZeroPoseToRawTrackingPose)
|
||||
{
|
||||
struct IVRChaperoneSetup_IVRChaperoneSetup_005_GetWorkingSeatedZeroPoseToRawTrackingPose_params params =
|
||||
{
|
||||
@ -401,7 +401,7 @@ bool __thiscall winIVRChaperoneSetup_IVRChaperoneSetup_005_GetWorkingSeatedZeroP
|
||||
return params._ret;
|
||||
}
|
||||
|
||||
bool __thiscall winIVRChaperoneSetup_IVRChaperoneSetup_005_GetWorkingStandingZeroPoseToRawTrackingPose(struct w_steam_iface *_this, HmdMatrix34_t *pmatStandingZeroPoseToRawTrackingPose)
|
||||
int8_t __thiscall winIVRChaperoneSetup_IVRChaperoneSetup_005_GetWorkingStandingZeroPoseToRawTrackingPose(struct w_steam_iface *_this, HmdMatrix34_t *pmatStandingZeroPoseToRawTrackingPose)
|
||||
{
|
||||
struct IVRChaperoneSetup_IVRChaperoneSetup_005_GetWorkingStandingZeroPoseToRawTrackingPose_params params =
|
||||
{
|
||||
@ -470,7 +470,7 @@ void __thiscall winIVRChaperoneSetup_IVRChaperoneSetup_005_ReloadFromDisk(struct
|
||||
VRCLIENT_CALL( IVRChaperoneSetup_IVRChaperoneSetup_005_ReloadFromDisk, ¶ms );
|
||||
}
|
||||
|
||||
bool __thiscall winIVRChaperoneSetup_IVRChaperoneSetup_005_GetLiveSeatedZeroPoseToRawTrackingPose(struct w_steam_iface *_this, HmdMatrix34_t *pmatSeatedZeroPoseToRawTrackingPose)
|
||||
int8_t __thiscall winIVRChaperoneSetup_IVRChaperoneSetup_005_GetLiveSeatedZeroPoseToRawTrackingPose(struct w_steam_iface *_this, HmdMatrix34_t *pmatSeatedZeroPoseToRawTrackingPose)
|
||||
{
|
||||
struct IVRChaperoneSetup_IVRChaperoneSetup_005_GetLiveSeatedZeroPoseToRawTrackingPose_params params =
|
||||
{
|
||||
@ -494,7 +494,7 @@ void __thiscall winIVRChaperoneSetup_IVRChaperoneSetup_005_SetWorkingCollisionBo
|
||||
VRCLIENT_CALL( IVRChaperoneSetup_IVRChaperoneSetup_005_SetWorkingCollisionBoundsTagsInfo, ¶ms );
|
||||
}
|
||||
|
||||
bool __thiscall winIVRChaperoneSetup_IVRChaperoneSetup_005_GetLiveCollisionBoundsTagsInfo(struct w_steam_iface *_this, uint8_t *pTagsBuffer, uint32_t *punTagCount)
|
||||
int8_t __thiscall winIVRChaperoneSetup_IVRChaperoneSetup_005_GetLiveCollisionBoundsTagsInfo(struct w_steam_iface *_this, uint8_t *pTagsBuffer, uint32_t *punTagCount)
|
||||
{
|
||||
struct IVRChaperoneSetup_IVRChaperoneSetup_005_GetLiveCollisionBoundsTagsInfo_params params =
|
||||
{
|
||||
@ -507,7 +507,7 @@ bool __thiscall winIVRChaperoneSetup_IVRChaperoneSetup_005_GetLiveCollisionBound
|
||||
return params._ret;
|
||||
}
|
||||
|
||||
bool __thiscall winIVRChaperoneSetup_IVRChaperoneSetup_005_SetWorkingPhysicalBoundsInfo(struct w_steam_iface *_this, HmdQuad_t *pQuadsBuffer, uint32_t unQuadsCount)
|
||||
int8_t __thiscall winIVRChaperoneSetup_IVRChaperoneSetup_005_SetWorkingPhysicalBoundsInfo(struct w_steam_iface *_this, HmdQuad_t *pQuadsBuffer, uint32_t unQuadsCount)
|
||||
{
|
||||
struct IVRChaperoneSetup_IVRChaperoneSetup_005_SetWorkingPhysicalBoundsInfo_params params =
|
||||
{
|
||||
@ -520,7 +520,7 @@ bool __thiscall winIVRChaperoneSetup_IVRChaperoneSetup_005_SetWorkingPhysicalBou
|
||||
return params._ret;
|
||||
}
|
||||
|
||||
bool __thiscall winIVRChaperoneSetup_IVRChaperoneSetup_005_GetLivePhysicalBoundsInfo(struct w_steam_iface *_this, HmdQuad_t *pQuadsBuffer, uint32_t *punQuadsCount)
|
||||
int8_t __thiscall winIVRChaperoneSetup_IVRChaperoneSetup_005_GetLivePhysicalBoundsInfo(struct w_steam_iface *_this, HmdQuad_t *pQuadsBuffer, uint32_t *punQuadsCount)
|
||||
{
|
||||
struct IVRChaperoneSetup_IVRChaperoneSetup_005_GetLivePhysicalBoundsInfo_params params =
|
||||
{
|
||||
@ -533,7 +533,7 @@ bool __thiscall winIVRChaperoneSetup_IVRChaperoneSetup_005_GetLivePhysicalBounds
|
||||
return params._ret;
|
||||
}
|
||||
|
||||
bool __thiscall winIVRChaperoneSetup_IVRChaperoneSetup_005_ExportLiveToBuffer(struct w_steam_iface *_this, char *pBuffer, uint32_t *pnBufferLength)
|
||||
int8_t __thiscall winIVRChaperoneSetup_IVRChaperoneSetup_005_ExportLiveToBuffer(struct w_steam_iface *_this, char *pBuffer, uint32_t *pnBufferLength)
|
||||
{
|
||||
struct IVRChaperoneSetup_IVRChaperoneSetup_005_ExportLiveToBuffer_params params =
|
||||
{
|
||||
@ -546,7 +546,7 @@ bool __thiscall winIVRChaperoneSetup_IVRChaperoneSetup_005_ExportLiveToBuffer(st
|
||||
return params._ret;
|
||||
}
|
||||
|
||||
bool __thiscall winIVRChaperoneSetup_IVRChaperoneSetup_005_ImportFromBufferToWorking(struct w_steam_iface *_this, const char *pBuffer, uint32_t nImportFlags)
|
||||
int8_t __thiscall winIVRChaperoneSetup_IVRChaperoneSetup_005_ImportFromBufferToWorking(struct w_steam_iface *_this, const char *pBuffer, uint32_t nImportFlags)
|
||||
{
|
||||
struct IVRChaperoneSetup_IVRChaperoneSetup_005_ImportFromBufferToWorking_params params =
|
||||
{
|
||||
@ -667,7 +667,7 @@ DEFINE_THISCALL_WRAPPER(winIVRChaperoneSetup_IVRChaperoneSetup_006_ShowWorkingSe
|
||||
DEFINE_THISCALL_WRAPPER(winIVRChaperoneSetup_IVRChaperoneSetup_006_HideWorkingSetPreview, 4)
|
||||
DEFINE_THISCALL_WRAPPER(winIVRChaperoneSetup_IVRChaperoneSetup_006_RoomSetupStarting, 4)
|
||||
|
||||
bool __thiscall winIVRChaperoneSetup_IVRChaperoneSetup_006_CommitWorkingCopy(struct w_steam_iface *_this, uint32_t configFile)
|
||||
int8_t __thiscall winIVRChaperoneSetup_IVRChaperoneSetup_006_CommitWorkingCopy(struct w_steam_iface *_this, uint32_t configFile)
|
||||
{
|
||||
struct IVRChaperoneSetup_IVRChaperoneSetup_006_CommitWorkingCopy_params params =
|
||||
{
|
||||
@ -689,7 +689,7 @@ void __thiscall winIVRChaperoneSetup_IVRChaperoneSetup_006_RevertWorkingCopy(str
|
||||
VRCLIENT_CALL( IVRChaperoneSetup_IVRChaperoneSetup_006_RevertWorkingCopy, ¶ms );
|
||||
}
|
||||
|
||||
bool __thiscall winIVRChaperoneSetup_IVRChaperoneSetup_006_GetWorkingPlayAreaSize(struct w_steam_iface *_this, float *pSizeX, float *pSizeZ)
|
||||
int8_t __thiscall winIVRChaperoneSetup_IVRChaperoneSetup_006_GetWorkingPlayAreaSize(struct w_steam_iface *_this, float *pSizeX, float *pSizeZ)
|
||||
{
|
||||
struct IVRChaperoneSetup_IVRChaperoneSetup_006_GetWorkingPlayAreaSize_params params =
|
||||
{
|
||||
@ -702,7 +702,7 @@ bool __thiscall winIVRChaperoneSetup_IVRChaperoneSetup_006_GetWorkingPlayAreaSiz
|
||||
return params._ret;
|
||||
}
|
||||
|
||||
bool __thiscall winIVRChaperoneSetup_IVRChaperoneSetup_006_GetWorkingPlayAreaRect(struct w_steam_iface *_this, HmdQuad_t *rect)
|
||||
int8_t __thiscall winIVRChaperoneSetup_IVRChaperoneSetup_006_GetWorkingPlayAreaRect(struct w_steam_iface *_this, HmdQuad_t *rect)
|
||||
{
|
||||
struct IVRChaperoneSetup_IVRChaperoneSetup_006_GetWorkingPlayAreaRect_params params =
|
||||
{
|
||||
@ -714,7 +714,7 @@ bool __thiscall winIVRChaperoneSetup_IVRChaperoneSetup_006_GetWorkingPlayAreaRec
|
||||
return params._ret;
|
||||
}
|
||||
|
||||
bool __thiscall winIVRChaperoneSetup_IVRChaperoneSetup_006_GetWorkingCollisionBoundsInfo(struct w_steam_iface *_this, HmdQuad_t *pQuadsBuffer, uint32_t *punQuadsCount)
|
||||
int8_t __thiscall winIVRChaperoneSetup_IVRChaperoneSetup_006_GetWorkingCollisionBoundsInfo(struct w_steam_iface *_this, HmdQuad_t *pQuadsBuffer, uint32_t *punQuadsCount)
|
||||
{
|
||||
struct IVRChaperoneSetup_IVRChaperoneSetup_006_GetWorkingCollisionBoundsInfo_params params =
|
||||
{
|
||||
@ -727,7 +727,7 @@ bool __thiscall winIVRChaperoneSetup_IVRChaperoneSetup_006_GetWorkingCollisionBo
|
||||
return params._ret;
|
||||
}
|
||||
|
||||
bool __thiscall winIVRChaperoneSetup_IVRChaperoneSetup_006_GetLiveCollisionBoundsInfo(struct w_steam_iface *_this, HmdQuad_t *pQuadsBuffer, uint32_t *punQuadsCount)
|
||||
int8_t __thiscall winIVRChaperoneSetup_IVRChaperoneSetup_006_GetLiveCollisionBoundsInfo(struct w_steam_iface *_this, HmdQuad_t *pQuadsBuffer, uint32_t *punQuadsCount)
|
||||
{
|
||||
struct IVRChaperoneSetup_IVRChaperoneSetup_006_GetLiveCollisionBoundsInfo_params params =
|
||||
{
|
||||
@ -740,7 +740,7 @@ bool __thiscall winIVRChaperoneSetup_IVRChaperoneSetup_006_GetLiveCollisionBound
|
||||
return params._ret;
|
||||
}
|
||||
|
||||
bool __thiscall winIVRChaperoneSetup_IVRChaperoneSetup_006_GetWorkingSeatedZeroPoseToRawTrackingPose(struct w_steam_iface *_this, HmdMatrix34_t *pmatSeatedZeroPoseToRawTrackingPose)
|
||||
int8_t __thiscall winIVRChaperoneSetup_IVRChaperoneSetup_006_GetWorkingSeatedZeroPoseToRawTrackingPose(struct w_steam_iface *_this, HmdMatrix34_t *pmatSeatedZeroPoseToRawTrackingPose)
|
||||
{
|
||||
struct IVRChaperoneSetup_IVRChaperoneSetup_006_GetWorkingSeatedZeroPoseToRawTrackingPose_params params =
|
||||
{
|
||||
@ -752,7 +752,7 @@ bool __thiscall winIVRChaperoneSetup_IVRChaperoneSetup_006_GetWorkingSeatedZeroP
|
||||
return params._ret;
|
||||
}
|
||||
|
||||
bool __thiscall winIVRChaperoneSetup_IVRChaperoneSetup_006_GetWorkingStandingZeroPoseToRawTrackingPose(struct w_steam_iface *_this, HmdMatrix34_t *pmatStandingZeroPoseToRawTrackingPose)
|
||||
int8_t __thiscall winIVRChaperoneSetup_IVRChaperoneSetup_006_GetWorkingStandingZeroPoseToRawTrackingPose(struct w_steam_iface *_this, HmdMatrix34_t *pmatStandingZeroPoseToRawTrackingPose)
|
||||
{
|
||||
struct IVRChaperoneSetup_IVRChaperoneSetup_006_GetWorkingStandingZeroPoseToRawTrackingPose_params params =
|
||||
{
|
||||
@ -833,7 +833,7 @@ void __thiscall winIVRChaperoneSetup_IVRChaperoneSetup_006_ReloadFromDisk(struct
|
||||
VRCLIENT_CALL( IVRChaperoneSetup_IVRChaperoneSetup_006_ReloadFromDisk, ¶ms );
|
||||
}
|
||||
|
||||
bool __thiscall winIVRChaperoneSetup_IVRChaperoneSetup_006_GetLiveSeatedZeroPoseToRawTrackingPose(struct w_steam_iface *_this, HmdMatrix34_t *pmatSeatedZeroPoseToRawTrackingPose)
|
||||
int8_t __thiscall winIVRChaperoneSetup_IVRChaperoneSetup_006_GetLiveSeatedZeroPoseToRawTrackingPose(struct w_steam_iface *_this, HmdMatrix34_t *pmatSeatedZeroPoseToRawTrackingPose)
|
||||
{
|
||||
struct IVRChaperoneSetup_IVRChaperoneSetup_006_GetLiveSeatedZeroPoseToRawTrackingPose_params params =
|
||||
{
|
||||
@ -845,7 +845,7 @@ bool __thiscall winIVRChaperoneSetup_IVRChaperoneSetup_006_GetLiveSeatedZeroPose
|
||||
return params._ret;
|
||||
}
|
||||
|
||||
bool __thiscall winIVRChaperoneSetup_IVRChaperoneSetup_006_ExportLiveToBuffer(struct w_steam_iface *_this, char *pBuffer, uint32_t *pnBufferLength)
|
||||
int8_t __thiscall winIVRChaperoneSetup_IVRChaperoneSetup_006_ExportLiveToBuffer(struct w_steam_iface *_this, char *pBuffer, uint32_t *pnBufferLength)
|
||||
{
|
||||
struct IVRChaperoneSetup_IVRChaperoneSetup_006_ExportLiveToBuffer_params params =
|
||||
{
|
||||
@ -858,7 +858,7 @@ bool __thiscall winIVRChaperoneSetup_IVRChaperoneSetup_006_ExportLiveToBuffer(st
|
||||
return params._ret;
|
||||
}
|
||||
|
||||
bool __thiscall winIVRChaperoneSetup_IVRChaperoneSetup_006_ImportFromBufferToWorking(struct w_steam_iface *_this, const char *pBuffer, uint32_t nImportFlags)
|
||||
int8_t __thiscall winIVRChaperoneSetup_IVRChaperoneSetup_006_ImportFromBufferToWorking(struct w_steam_iface *_this, const char *pBuffer, uint32_t nImportFlags)
|
||||
{
|
||||
struct IVRChaperoneSetup_IVRChaperoneSetup_006_ImportFromBufferToWorking_params params =
|
||||
{
|
||||
|
@ -34,7 +34,7 @@ uint32_t __thiscall winIVRClientCore_IVRClientCore_002_IsInterfaceVersionValid(s
|
||||
|
||||
extern void * __thiscall winIVRClientCore_IVRClientCore_002_GetGenericInterface(struct w_steam_iface *_this, const char *pchNameAndVersion, uint32_t *peError);
|
||||
|
||||
extern bool __thiscall winIVRClientCore_IVRClientCore_002_BIsHmdPresent(struct w_steam_iface *_this);
|
||||
extern int8_t __thiscall winIVRClientCore_IVRClientCore_002_BIsHmdPresent(struct w_steam_iface *_this);
|
||||
|
||||
const char * __thiscall winIVRClientCore_IVRClientCore_002_GetEnglishStringForHmdError(struct w_steam_iface *_this, uint32_t eError)
|
||||
{
|
||||
@ -147,7 +147,7 @@ uint32_t __thiscall winIVRClientCore_IVRClientCore_003_IsInterfaceVersionValid(s
|
||||
|
||||
extern void * __thiscall winIVRClientCore_IVRClientCore_003_GetGenericInterface(struct w_steam_iface *_this, const char *pchNameAndVersion, uint32_t *peError);
|
||||
|
||||
extern bool __thiscall winIVRClientCore_IVRClientCore_003_BIsHmdPresent(struct w_steam_iface *_this);
|
||||
extern int8_t __thiscall winIVRClientCore_IVRClientCore_003_BIsHmdPresent(struct w_steam_iface *_this);
|
||||
|
||||
const char * __thiscall winIVRClientCore_IVRClientCore_003_GetEnglishStringForHmdError(struct w_steam_iface *_this, uint32_t eError)
|
||||
{
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -131,7 +131,7 @@ uint32_t __thiscall winIVRControlPanel_IVRControlPanel_006_undoc7(struct w_steam
|
||||
return params._ret;
|
||||
}
|
||||
|
||||
bool __thiscall winIVRControlPanel_IVRControlPanel_006_undoc8(struct w_steam_iface *_this, uint32_t a)
|
||||
int8_t __thiscall winIVRControlPanel_IVRControlPanel_006_undoc8(struct w_steam_iface *_this, uint32_t a)
|
||||
{
|
||||
struct IVRControlPanel_IVRControlPanel_006_undoc8_params params =
|
||||
{
|
||||
@ -163,7 +163,7 @@ void __thiscall winIVRControlPanel_IVRControlPanel_006_undoc10(struct w_steam_if
|
||||
VRCLIENT_CALL( IVRControlPanel_IVRControlPanel_006_undoc10, ¶ms );
|
||||
}
|
||||
|
||||
bool __thiscall winIVRControlPanel_IVRControlPanel_006_undoc11(struct w_steam_iface *_this, uint32_t a)
|
||||
int8_t __thiscall winIVRControlPanel_IVRControlPanel_006_undoc11(struct w_steam_iface *_this, uint32_t a)
|
||||
{
|
||||
struct IVRControlPanel_IVRControlPanel_006_undoc11_params params =
|
||||
{
|
||||
@ -218,7 +218,7 @@ uint32_t __thiscall winIVRControlPanel_IVRControlPanel_006_undoc15(struct w_stea
|
||||
return params._ret;
|
||||
}
|
||||
|
||||
void __thiscall winIVRControlPanel_IVRControlPanel_006_undoc16(struct w_steam_iface *_this, bool a)
|
||||
void __thiscall winIVRControlPanel_IVRControlPanel_006_undoc16(struct w_steam_iface *_this, int8_t a)
|
||||
{
|
||||
struct IVRControlPanel_IVRControlPanel_006_undoc16_params params =
|
||||
{
|
||||
@ -229,7 +229,7 @@ void __thiscall winIVRControlPanel_IVRControlPanel_006_undoc16(struct w_steam_if
|
||||
VRCLIENT_CALL( IVRControlPanel_IVRControlPanel_006_undoc16, ¶ms );
|
||||
}
|
||||
|
||||
bool __thiscall winIVRControlPanel_IVRControlPanel_006_undoc17(struct w_steam_iface *_this)
|
||||
int8_t __thiscall winIVRControlPanel_IVRControlPanel_006_undoc17(struct w_steam_iface *_this)
|
||||
{
|
||||
struct IVRControlPanel_IVRControlPanel_006_undoc17_params params =
|
||||
{
|
||||
@ -251,7 +251,7 @@ uint32_t __thiscall winIVRControlPanel_IVRControlPanel_006_undoc18(struct w_stea
|
||||
return params._ret;
|
||||
}
|
||||
|
||||
void __thiscall winIVRControlPanel_IVRControlPanel_006_undoc19(struct w_steam_iface *_this, bool a)
|
||||
void __thiscall winIVRControlPanel_IVRControlPanel_006_undoc19(struct w_steam_iface *_this, int8_t a)
|
||||
{
|
||||
struct IVRControlPanel_IVRControlPanel_006_undoc19_params params =
|
||||
{
|
||||
@ -262,7 +262,7 @@ void __thiscall winIVRControlPanel_IVRControlPanel_006_undoc19(struct w_steam_if
|
||||
VRCLIENT_CALL( IVRControlPanel_IVRControlPanel_006_undoc19, ¶ms );
|
||||
}
|
||||
|
||||
bool __thiscall winIVRControlPanel_IVRControlPanel_006_undoc20(struct w_steam_iface *_this)
|
||||
int8_t __thiscall winIVRControlPanel_IVRControlPanel_006_undoc20(struct w_steam_iface *_this)
|
||||
{
|
||||
struct IVRControlPanel_IVRControlPanel_006_undoc20_params params =
|
||||
{
|
||||
@ -299,7 +299,7 @@ void __thiscall winIVRControlPanel_IVRControlPanel_006_undoc22(struct w_steam_if
|
||||
VRCLIENT_CALL( IVRControlPanel_IVRControlPanel_006_undoc22, ¶ms );
|
||||
}
|
||||
|
||||
bool __thiscall winIVRControlPanel_IVRControlPanel_006_undoc23(struct w_steam_iface *_this, const char *a)
|
||||
int8_t __thiscall winIVRControlPanel_IVRControlPanel_006_undoc23(struct w_steam_iface *_this, const char *a)
|
||||
{
|
||||
struct IVRControlPanel_IVRControlPanel_006_undoc23_params params =
|
||||
{
|
||||
@ -311,7 +311,7 @@ bool __thiscall winIVRControlPanel_IVRControlPanel_006_undoc23(struct w_steam_if
|
||||
return params._ret;
|
||||
}
|
||||
|
||||
bool __thiscall winIVRControlPanel_IVRControlPanel_006_undoc24(struct w_steam_iface *_this)
|
||||
int8_t __thiscall winIVRControlPanel_IVRControlPanel_006_undoc24(struct w_steam_iface *_this)
|
||||
{
|
||||
struct IVRControlPanel_IVRControlPanel_006_undoc24_params params =
|
||||
{
|
||||
@ -322,7 +322,7 @@ bool __thiscall winIVRControlPanel_IVRControlPanel_006_undoc24(struct w_steam_if
|
||||
return params._ret;
|
||||
}
|
||||
|
||||
bool __thiscall winIVRControlPanel_IVRControlPanel_006_undoc25(struct w_steam_iface *_this, bool a)
|
||||
int8_t __thiscall winIVRControlPanel_IVRControlPanel_006_undoc25(struct w_steam_iface *_this, int8_t a)
|
||||
{
|
||||
struct IVRControlPanel_IVRControlPanel_006_undoc25_params params =
|
||||
{
|
||||
|
@ -50,7 +50,7 @@ uint64_t __thiscall winIVRDriverManager_IVRDriverManager_001_GetDriverHandle(str
|
||||
return params._ret;
|
||||
}
|
||||
|
||||
bool __thiscall winIVRDriverManager_IVRDriverManager_001_IsEnabled(struct w_steam_iface *_this, uint32_t nDriver)
|
||||
int8_t __thiscall winIVRDriverManager_IVRDriverManager_001_IsEnabled(struct w_steam_iface *_this, uint32_t nDriver)
|
||||
{
|
||||
struct IVRDriverManager_IVRDriverManager_001_IsEnabled_params params =
|
||||
{
|
||||
|
@ -64,7 +64,7 @@ uint32_t __thiscall winIVRHeadsetView_IVRHeadsetView_001_GetHeadsetViewMode(stru
|
||||
return params._ret;
|
||||
}
|
||||
|
||||
void __thiscall winIVRHeadsetView_IVRHeadsetView_001_SetHeadsetViewCropped(struct w_steam_iface *_this, bool bCropped)
|
||||
void __thiscall winIVRHeadsetView_IVRHeadsetView_001_SetHeadsetViewCropped(struct w_steam_iface *_this, int8_t bCropped)
|
||||
{
|
||||
struct IVRHeadsetView_IVRHeadsetView_001_SetHeadsetViewCropped_params params =
|
||||
{
|
||||
@ -75,7 +75,7 @@ void __thiscall winIVRHeadsetView_IVRHeadsetView_001_SetHeadsetViewCropped(struc
|
||||
VRCLIENT_CALL( IVRHeadsetView_IVRHeadsetView_001_SetHeadsetViewCropped, ¶ms );
|
||||
}
|
||||
|
||||
bool __thiscall winIVRHeadsetView_IVRHeadsetView_001_GetHeadsetViewCropped(struct w_steam_iface *_this)
|
||||
int8_t __thiscall winIVRHeadsetView_IVRHeadsetView_001_GetHeadsetViewCropped(struct w_steam_iface *_this)
|
||||
{
|
||||
struct IVRHeadsetView_IVRHeadsetView_001_GetHeadsetViewCropped_params params =
|
||||
{
|
||||
|
@ -216,7 +216,7 @@ uint64_t __thiscall winIVRIOBuffer_IVRIOBuffer_002_PropertyContainer(struct w_st
|
||||
return params._ret;
|
||||
}
|
||||
|
||||
bool __thiscall winIVRIOBuffer_IVRIOBuffer_002_HasReaders(struct w_steam_iface *_this, uint64_t ulBuffer)
|
||||
int8_t __thiscall winIVRIOBuffer_IVRIOBuffer_002_HasReaders(struct w_steam_iface *_this, uint64_t ulBuffer)
|
||||
{
|
||||
struct IVRIOBuffer_IVRIOBuffer_002_HasReaders_params params =
|
||||
{
|
||||
|
@ -1069,7 +1069,7 @@ uint32_t __thiscall winIVRInput_IVRInput_005_ShowBindingsForActionSet(struct w_s
|
||||
return params._ret;
|
||||
}
|
||||
|
||||
bool __thiscall winIVRInput_IVRInput_005_IsUsingLegacyInput(struct w_steam_iface *_this)
|
||||
int8_t __thiscall winIVRInput_IVRInput_005_IsUsingLegacyInput(struct w_steam_iface *_this)
|
||||
{
|
||||
struct IVRInput_IVRInput_005_IsUsingLegacyInput_params params =
|
||||
{
|
||||
@ -1555,7 +1555,7 @@ uint32_t __thiscall winIVRInput_IVRInput_006_ShowBindingsForActionSet(struct w_s
|
||||
return params._ret;
|
||||
}
|
||||
|
||||
bool __thiscall winIVRInput_IVRInput_006_IsUsingLegacyInput(struct w_steam_iface *_this)
|
||||
int8_t __thiscall winIVRInput_IVRInput_006_IsUsingLegacyInput(struct w_steam_iface *_this)
|
||||
{
|
||||
struct IVRInput_IVRInput_006_IsUsingLegacyInput_params params =
|
||||
{
|
||||
@ -2061,7 +2061,7 @@ uint32_t __thiscall winIVRInput_IVRInput_007_ShowBindingsForActionSet(struct w_s
|
||||
return params._ret;
|
||||
}
|
||||
|
||||
bool __thiscall winIVRInput_IVRInput_007_IsUsingLegacyInput(struct w_steam_iface *_this)
|
||||
int8_t __thiscall winIVRInput_IVRInput_007_IsUsingLegacyInput(struct w_steam_iface *_this)
|
||||
{
|
||||
struct IVRInput_IVRInput_007_IsUsingLegacyInput_params params =
|
||||
{
|
||||
@ -2072,7 +2072,7 @@ bool __thiscall winIVRInput_IVRInput_007_IsUsingLegacyInput(struct w_steam_iface
|
||||
return params._ret;
|
||||
}
|
||||
|
||||
uint32_t __thiscall winIVRInput_IVRInput_007_OpenBindingUI(struct w_steam_iface *_this, const char *pchAppKey, uint64_t ulActionSetHandle, uint64_t ulDeviceHandle, bool bShowOnDesktop)
|
||||
uint32_t __thiscall winIVRInput_IVRInput_007_OpenBindingUI(struct w_steam_iface *_this, const char *pchAppKey, uint64_t ulActionSetHandle, uint64_t ulDeviceHandle, int8_t bShowOnDesktop)
|
||||
{
|
||||
struct IVRInput_IVRInput_007_OpenBindingUI_params params =
|
||||
{
|
||||
@ -2631,7 +2631,7 @@ uint32_t __thiscall winIVRInput_IVRInput_010_GetComponentStateForBinding(struct
|
||||
return params._ret;
|
||||
}
|
||||
|
||||
bool __thiscall winIVRInput_IVRInput_010_IsUsingLegacyInput(struct w_steam_iface *_this)
|
||||
int8_t __thiscall winIVRInput_IVRInput_010_IsUsingLegacyInput(struct w_steam_iface *_this)
|
||||
{
|
||||
struct IVRInput_IVRInput_010_IsUsingLegacyInput_params params =
|
||||
{
|
||||
@ -2642,7 +2642,7 @@ bool __thiscall winIVRInput_IVRInput_010_IsUsingLegacyInput(struct w_steam_iface
|
||||
return params._ret;
|
||||
}
|
||||
|
||||
uint32_t __thiscall winIVRInput_IVRInput_010_OpenBindingUI(struct w_steam_iface *_this, const char *pchAppKey, uint64_t ulActionSetHandle, uint64_t ulDeviceHandle, bool bShowOnDesktop)
|
||||
uint32_t __thiscall winIVRInput_IVRInput_010_OpenBindingUI(struct w_steam_iface *_this, const char *pchAppKey, uint64_t ulActionSetHandle, uint64_t ulDeviceHandle, int8_t bShowOnDesktop)
|
||||
{
|
||||
struct IVRInput_IVRInput_010_OpenBindingUI_params params =
|
||||
{
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -52,7 +52,7 @@ void __thiscall winIVROverlayView_IVROverlayView_003_PostOverlayEvent(struct w_s
|
||||
VRCLIENT_CALL( IVROverlayView_IVROverlayView_003_PostOverlayEvent, ¶ms );
|
||||
}
|
||||
|
||||
bool __thiscall winIVROverlayView_IVROverlayView_003_IsViewingPermitted(struct w_steam_iface *_this, uint64_t ulOverlayHandle)
|
||||
int8_t __thiscall winIVROverlayView_IVROverlayView_003_IsViewingPermitted(struct w_steam_iface *_this, uint64_t ulOverlayHandle)
|
||||
{
|
||||
struct IVROverlayView_IVROverlayView_003_IsViewingPermitted_params params =
|
||||
{
|
||||
|
@ -13,7 +13,7 @@ DEFINE_THISCALL_WRAPPER(winIVRRenderModels_IVRRenderModels_001_FreeRenderModel,
|
||||
DEFINE_THISCALL_WRAPPER(winIVRRenderModels_IVRRenderModels_001_GetRenderModelName, 16)
|
||||
DEFINE_THISCALL_WRAPPER(winIVRRenderModels_IVRRenderModels_001_GetRenderModelCount, 4)
|
||||
|
||||
bool __thiscall winIVRRenderModels_IVRRenderModels_001_LoadRenderModel(struct w_steam_iface *_this, const char *pchRenderModelName, w_RenderModel_t_090 *pRenderModel)
|
||||
int8_t __thiscall winIVRRenderModels_IVRRenderModels_001_LoadRenderModel(struct w_steam_iface *_this, const char *pchRenderModelName, w_RenderModel_t_090 *pRenderModel)
|
||||
{
|
||||
struct IVRRenderModels_IVRRenderModels_001_LoadRenderModel_params params =
|
||||
{
|
||||
@ -130,11 +130,11 @@ DEFINE_THISCALL_WRAPPER(winIVRRenderModels_IVRRenderModels_002_GetComponentRende
|
||||
DEFINE_THISCALL_WRAPPER(winIVRRenderModels_IVRRenderModels_002_GetComponentState, 20)
|
||||
DEFINE_THISCALL_WRAPPER(winIVRRenderModels_IVRRenderModels_002_RenderModelHasComponent, 12)
|
||||
|
||||
extern bool __thiscall winIVRRenderModels_IVRRenderModels_002_LoadRenderModel(struct w_steam_iface *_this, const char *pchRenderModelName, w_RenderModel_t_0912 **ppRenderModel);
|
||||
extern int8_t __thiscall winIVRRenderModels_IVRRenderModels_002_LoadRenderModel(struct w_steam_iface *_this, const char *pchRenderModelName, w_RenderModel_t_0912 **ppRenderModel);
|
||||
|
||||
extern void __thiscall winIVRRenderModels_IVRRenderModels_002_FreeRenderModel(struct w_steam_iface *_this, w_RenderModel_t_0912 *pRenderModel);
|
||||
|
||||
extern bool __thiscall winIVRRenderModels_IVRRenderModels_002_LoadTexture(struct w_steam_iface *_this, int32_t textureId, w_RenderModel_TextureMap_t_090 **ppTexture);
|
||||
extern int8_t __thiscall winIVRRenderModels_IVRRenderModels_002_LoadTexture(struct w_steam_iface *_this, int32_t textureId, w_RenderModel_TextureMap_t_090 **ppTexture);
|
||||
|
||||
extern void __thiscall winIVRRenderModels_IVRRenderModels_002_FreeTexture(struct w_steam_iface *_this, w_RenderModel_TextureMap_t_090 *pTexture);
|
||||
|
||||
@ -218,7 +218,7 @@ uint32_t __thiscall winIVRRenderModels_IVRRenderModels_002_GetComponentRenderMod
|
||||
return params._ret;
|
||||
}
|
||||
|
||||
bool __thiscall winIVRRenderModels_IVRRenderModels_002_GetComponentState(struct w_steam_iface *_this, const char *pchRenderModelName, const char *pchComponentName, const w_VRControllerState001_t *pControllerState, RenderModel_ComponentState_t *pComponentState)
|
||||
int8_t __thiscall winIVRRenderModels_IVRRenderModels_002_GetComponentState(struct w_steam_iface *_this, const char *pchRenderModelName, const char *pchComponentName, const w_VRControllerState001_t *pControllerState, RenderModel_ComponentState_t *pComponentState)
|
||||
{
|
||||
struct IVRRenderModels_IVRRenderModels_002_GetComponentState_params params =
|
||||
{
|
||||
@ -233,7 +233,7 @@ bool __thiscall winIVRRenderModels_IVRRenderModels_002_GetComponentState(struct
|
||||
return params._ret;
|
||||
}
|
||||
|
||||
bool __thiscall winIVRRenderModels_IVRRenderModels_002_RenderModelHasComponent(struct w_steam_iface *_this, const char *pchRenderModelName, const char *pchComponentName)
|
||||
int8_t __thiscall winIVRRenderModels_IVRRenderModels_002_RenderModelHasComponent(struct w_steam_iface *_this, const char *pchRenderModelName, const char *pchComponentName)
|
||||
{
|
||||
struct IVRRenderModels_IVRRenderModels_002_RenderModelHasComponent_params params =
|
||||
{
|
||||
@ -424,7 +424,7 @@ uint32_t __thiscall winIVRRenderModels_IVRRenderModels_004_GetComponentRenderMod
|
||||
return params._ret;
|
||||
}
|
||||
|
||||
bool __thiscall winIVRRenderModels_IVRRenderModels_004_GetComponentState(struct w_steam_iface *_this, const char *pchRenderModelName, const char *pchComponentName, const w_VRControllerState001_t *pControllerState, const RenderModel_ControllerMode_State_t *pState, RenderModel_ComponentState_t *pComponentState)
|
||||
int8_t __thiscall winIVRRenderModels_IVRRenderModels_004_GetComponentState(struct w_steam_iface *_this, const char *pchRenderModelName, const char *pchComponentName, const w_VRControllerState001_t *pControllerState, const RenderModel_ControllerMode_State_t *pState, RenderModel_ComponentState_t *pComponentState)
|
||||
{
|
||||
struct IVRRenderModels_IVRRenderModels_004_GetComponentState_params params =
|
||||
{
|
||||
@ -440,7 +440,7 @@ bool __thiscall winIVRRenderModels_IVRRenderModels_004_GetComponentState(struct
|
||||
return params._ret;
|
||||
}
|
||||
|
||||
bool __thiscall winIVRRenderModels_IVRRenderModels_004_RenderModelHasComponent(struct w_steam_iface *_this, const char *pchRenderModelName, const char *pchComponentName)
|
||||
int8_t __thiscall winIVRRenderModels_IVRRenderModels_004_RenderModelHasComponent(struct w_steam_iface *_this, const char *pchRenderModelName, const char *pchComponentName)
|
||||
{
|
||||
struct IVRRenderModels_IVRRenderModels_004_RenderModelHasComponent_params params =
|
||||
{
|
||||
@ -641,7 +641,7 @@ uint32_t __thiscall winIVRRenderModels_IVRRenderModels_005_GetComponentRenderMod
|
||||
return params._ret;
|
||||
}
|
||||
|
||||
bool __thiscall winIVRRenderModels_IVRRenderModels_005_GetComponentState(struct w_steam_iface *_this, const char *pchRenderModelName, const char *pchComponentName, const w_VRControllerState001_t *pControllerState, const RenderModel_ControllerMode_State_t *pState, RenderModel_ComponentState_t *pComponentState)
|
||||
int8_t __thiscall winIVRRenderModels_IVRRenderModels_005_GetComponentState(struct w_steam_iface *_this, const char *pchRenderModelName, const char *pchComponentName, const w_VRControllerState001_t *pControllerState, const RenderModel_ControllerMode_State_t *pState, RenderModel_ComponentState_t *pComponentState)
|
||||
{
|
||||
struct IVRRenderModels_IVRRenderModels_005_GetComponentState_params params =
|
||||
{
|
||||
@ -657,7 +657,7 @@ bool __thiscall winIVRRenderModels_IVRRenderModels_005_GetComponentState(struct
|
||||
return params._ret;
|
||||
}
|
||||
|
||||
bool __thiscall winIVRRenderModels_IVRRenderModels_005_RenderModelHasComponent(struct w_steam_iface *_this, const char *pchRenderModelName, const char *pchComponentName)
|
||||
int8_t __thiscall winIVRRenderModels_IVRRenderModels_005_RenderModelHasComponent(struct w_steam_iface *_this, const char *pchRenderModelName, const char *pchComponentName)
|
||||
{
|
||||
struct IVRRenderModels_IVRRenderModels_005_RenderModelHasComponent_params params =
|
||||
{
|
||||
@ -909,7 +909,7 @@ uint32_t __thiscall winIVRRenderModels_IVRRenderModels_006_GetComponentRenderMod
|
||||
return params._ret;
|
||||
}
|
||||
|
||||
bool __thiscall winIVRRenderModels_IVRRenderModels_006_GetComponentStateForDevicePath(struct w_steam_iface *_this, const char *pchRenderModelName, const char *pchComponentName, uint64_t devicePath, const RenderModel_ControllerMode_State_t *pState, RenderModel_ComponentState_t *pComponentState)
|
||||
int8_t __thiscall winIVRRenderModels_IVRRenderModels_006_GetComponentStateForDevicePath(struct w_steam_iface *_this, const char *pchRenderModelName, const char *pchComponentName, uint64_t devicePath, const RenderModel_ControllerMode_State_t *pState, RenderModel_ComponentState_t *pComponentState)
|
||||
{
|
||||
struct IVRRenderModels_IVRRenderModels_006_GetComponentStateForDevicePath_params params =
|
||||
{
|
||||
@ -925,7 +925,7 @@ bool __thiscall winIVRRenderModels_IVRRenderModels_006_GetComponentStateForDevic
|
||||
return params._ret;
|
||||
}
|
||||
|
||||
bool __thiscall winIVRRenderModels_IVRRenderModels_006_GetComponentState(struct w_steam_iface *_this, const char *pchRenderModelName, const char *pchComponentName, const w_VRControllerState001_t *pControllerState, const RenderModel_ControllerMode_State_t *pState, RenderModel_ComponentState_t *pComponentState)
|
||||
int8_t __thiscall winIVRRenderModels_IVRRenderModels_006_GetComponentState(struct w_steam_iface *_this, const char *pchRenderModelName, const char *pchComponentName, const w_VRControllerState001_t *pControllerState, const RenderModel_ControllerMode_State_t *pState, RenderModel_ComponentState_t *pComponentState)
|
||||
{
|
||||
struct IVRRenderModels_IVRRenderModels_006_GetComponentState_params params =
|
||||
{
|
||||
@ -941,7 +941,7 @@ bool __thiscall winIVRRenderModels_IVRRenderModels_006_GetComponentState(struct
|
||||
return params._ret;
|
||||
}
|
||||
|
||||
bool __thiscall winIVRRenderModels_IVRRenderModels_006_RenderModelHasComponent(struct w_steam_iface *_this, const char *pchRenderModelName, const char *pchComponentName)
|
||||
int8_t __thiscall winIVRRenderModels_IVRRenderModels_006_RenderModelHasComponent(struct w_steam_iface *_this, const char *pchRenderModelName, const char *pchComponentName)
|
||||
{
|
||||
struct IVRRenderModels_IVRRenderModels_006_RenderModelHasComponent_params params =
|
||||
{
|
||||
|
@ -33,7 +33,7 @@ const char * __thiscall winIVRSettings_IVRSettings_001_GetSettingsErrorNameFromE
|
||||
return params._ret;
|
||||
}
|
||||
|
||||
bool __thiscall winIVRSettings_IVRSettings_001_Sync(struct w_steam_iface *_this, bool bForce, uint32_t *peError)
|
||||
int8_t __thiscall winIVRSettings_IVRSettings_001_Sync(struct w_steam_iface *_this, int8_t bForce, uint32_t *peError)
|
||||
{
|
||||
struct IVRSettings_IVRSettings_001_Sync_params params =
|
||||
{
|
||||
@ -46,7 +46,7 @@ bool __thiscall winIVRSettings_IVRSettings_001_Sync(struct w_steam_iface *_this,
|
||||
return params._ret;
|
||||
}
|
||||
|
||||
bool __thiscall winIVRSettings_IVRSettings_001_GetBool(struct w_steam_iface *_this, const char *pchSection, const char *pchSettingsKey, bool bDefaultValue, uint32_t *peError)
|
||||
int8_t __thiscall winIVRSettings_IVRSettings_001_GetBool(struct w_steam_iface *_this, const char *pchSection, const char *pchSettingsKey, int8_t bDefaultValue, uint32_t *peError)
|
||||
{
|
||||
struct IVRSettings_IVRSettings_001_GetBool_params params =
|
||||
{
|
||||
@ -61,7 +61,7 @@ bool __thiscall winIVRSettings_IVRSettings_001_GetBool(struct w_steam_iface *_th
|
||||
return params._ret;
|
||||
}
|
||||
|
||||
void __thiscall winIVRSettings_IVRSettings_001_SetBool(struct w_steam_iface *_this, const char *pchSection, const char *pchSettingsKey, bool bValue, uint32_t *peError)
|
||||
void __thiscall winIVRSettings_IVRSettings_001_SetBool(struct w_steam_iface *_this, const char *pchSection, const char *pchSettingsKey, int8_t bValue, uint32_t *peError)
|
||||
{
|
||||
struct IVRSettings_IVRSettings_001_SetBool_params params =
|
||||
{
|
||||
@ -284,7 +284,7 @@ const char * __thiscall winIVRSettings_IVRSettings_002_GetSettingsErrorNameFromE
|
||||
return params._ret;
|
||||
}
|
||||
|
||||
bool __thiscall winIVRSettings_IVRSettings_002_Sync(struct w_steam_iface *_this, bool bForce, uint32_t *peError)
|
||||
int8_t __thiscall winIVRSettings_IVRSettings_002_Sync(struct w_steam_iface *_this, int8_t bForce, uint32_t *peError)
|
||||
{
|
||||
struct IVRSettings_IVRSettings_002_Sync_params params =
|
||||
{
|
||||
@ -297,7 +297,7 @@ bool __thiscall winIVRSettings_IVRSettings_002_Sync(struct w_steam_iface *_this,
|
||||
return params._ret;
|
||||
}
|
||||
|
||||
void __thiscall winIVRSettings_IVRSettings_002_SetBool(struct w_steam_iface *_this, const char *pchSection, const char *pchSettingsKey, bool bValue, uint32_t *peError)
|
||||
void __thiscall winIVRSettings_IVRSettings_002_SetBool(struct w_steam_iface *_this, const char *pchSection, const char *pchSettingsKey, int8_t bValue, uint32_t *peError)
|
||||
{
|
||||
struct IVRSettings_IVRSettings_002_SetBool_params params =
|
||||
{
|
||||
@ -353,7 +353,7 @@ void __thiscall winIVRSettings_IVRSettings_002_SetString(struct w_steam_iface *_
|
||||
VRCLIENT_CALL( IVRSettings_IVRSettings_002_SetString, ¶ms );
|
||||
}
|
||||
|
||||
bool __thiscall winIVRSettings_IVRSettings_002_GetBool(struct w_steam_iface *_this, const char *pchSection, const char *pchSettingsKey, uint32_t *peError)
|
||||
int8_t __thiscall winIVRSettings_IVRSettings_002_GetBool(struct w_steam_iface *_this, const char *pchSection, const char *pchSettingsKey, uint32_t *peError)
|
||||
{
|
||||
struct IVRSettings_IVRSettings_002_GetBool_params params =
|
||||
{
|
||||
@ -530,7 +530,7 @@ const char * __thiscall winIVRSettings_IVRSettings_003_GetSettingsErrorNameFromE
|
||||
return params._ret;
|
||||
}
|
||||
|
||||
void __thiscall winIVRSettings_IVRSettings_003_SetBool(struct w_steam_iface *_this, const char *pchSection, const char *pchSettingsKey, bool bValue, uint32_t *peError)
|
||||
void __thiscall winIVRSettings_IVRSettings_003_SetBool(struct w_steam_iface *_this, const char *pchSection, const char *pchSettingsKey, int8_t bValue, uint32_t *peError)
|
||||
{
|
||||
struct IVRSettings_IVRSettings_003_SetBool_params params =
|
||||
{
|
||||
@ -586,7 +586,7 @@ void __thiscall winIVRSettings_IVRSettings_003_SetString(struct w_steam_iface *_
|
||||
VRCLIENT_CALL( IVRSettings_IVRSettings_003_SetString, ¶ms );
|
||||
}
|
||||
|
||||
bool __thiscall winIVRSettings_IVRSettings_003_GetBool(struct w_steam_iface *_this, const char *pchSection, const char *pchSettingsKey, uint32_t *peError)
|
||||
int8_t __thiscall winIVRSettings_IVRSettings_003_GetBool(struct w_steam_iface *_this, const char *pchSection, const char *pchSettingsKey, uint32_t *peError)
|
||||
{
|
||||
struct IVRSettings_IVRSettings_003_GetBool_params params =
|
||||
{
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -27,7 +27,7 @@ DEFINE_THISCALL_WRAPPER(winIVRTrackedCamera_IVRTrackedCamera_001_IsVideoStreamPa
|
||||
DEFINE_THISCALL_WRAPPER(winIVRTrackedCamera_IVRTrackedCamera_001_GetCameraDistortion, 24)
|
||||
DEFINE_THISCALL_WRAPPER(winIVRTrackedCamera_IVRTrackedCamera_001_GetCameraProjection, 28)
|
||||
|
||||
bool __thiscall winIVRTrackedCamera_IVRTrackedCamera_001_HasCamera(struct w_steam_iface *_this, uint32_t nDeviceIndex)
|
||||
int8_t __thiscall winIVRTrackedCamera_IVRTrackedCamera_001_HasCamera(struct w_steam_iface *_this, uint32_t nDeviceIndex)
|
||||
{
|
||||
struct IVRTrackedCamera_IVRTrackedCamera_001_HasCamera_params params =
|
||||
{
|
||||
@ -39,7 +39,7 @@ bool __thiscall winIVRTrackedCamera_IVRTrackedCamera_001_HasCamera(struct w_stea
|
||||
return params._ret;
|
||||
}
|
||||
|
||||
bool __thiscall winIVRTrackedCamera_IVRTrackedCamera_001_GetCameraFirmwareDescription(struct w_steam_iface *_this, uint32_t nDeviceIndex, char *pBuffer, uint32_t nBufferLen)
|
||||
int8_t __thiscall winIVRTrackedCamera_IVRTrackedCamera_001_GetCameraFirmwareDescription(struct w_steam_iface *_this, uint32_t nDeviceIndex, char *pBuffer, uint32_t nBufferLen)
|
||||
{
|
||||
struct IVRTrackedCamera_IVRTrackedCamera_001_GetCameraFirmwareDescription_params params =
|
||||
{
|
||||
@ -53,7 +53,7 @@ bool __thiscall winIVRTrackedCamera_IVRTrackedCamera_001_GetCameraFirmwareDescri
|
||||
return params._ret;
|
||||
}
|
||||
|
||||
bool __thiscall winIVRTrackedCamera_IVRTrackedCamera_001_GetCameraFrameDimensions(struct w_steam_iface *_this, uint32_t nDeviceIndex, uint32_t nVideoStreamFormat, uint32_t *pWidth, uint32_t *pHeight)
|
||||
int8_t __thiscall winIVRTrackedCamera_IVRTrackedCamera_001_GetCameraFrameDimensions(struct w_steam_iface *_this, uint32_t nDeviceIndex, uint32_t nVideoStreamFormat, uint32_t *pWidth, uint32_t *pHeight)
|
||||
{
|
||||
struct IVRTrackedCamera_IVRTrackedCamera_001_GetCameraFrameDimensions_params params =
|
||||
{
|
||||
@ -68,7 +68,7 @@ bool __thiscall winIVRTrackedCamera_IVRTrackedCamera_001_GetCameraFrameDimension
|
||||
return params._ret;
|
||||
}
|
||||
|
||||
bool __thiscall winIVRTrackedCamera_IVRTrackedCamera_001_SetCameraVideoStreamFormat(struct w_steam_iface *_this, uint32_t nDeviceIndex, uint32_t nVideoStreamFormat)
|
||||
int8_t __thiscall winIVRTrackedCamera_IVRTrackedCamera_001_SetCameraVideoStreamFormat(struct w_steam_iface *_this, uint32_t nDeviceIndex, uint32_t nVideoStreamFormat)
|
||||
{
|
||||
struct IVRTrackedCamera_IVRTrackedCamera_001_SetCameraVideoStreamFormat_params params =
|
||||
{
|
||||
@ -93,7 +93,7 @@ uint32_t __thiscall winIVRTrackedCamera_IVRTrackedCamera_001_GetCameraVideoStrea
|
||||
return params._ret;
|
||||
}
|
||||
|
||||
bool __thiscall winIVRTrackedCamera_IVRTrackedCamera_001_EnableCameraForStreaming(struct w_steam_iface *_this, uint32_t nDeviceIndex, bool bEnable)
|
||||
int8_t __thiscall winIVRTrackedCamera_IVRTrackedCamera_001_EnableCameraForStreaming(struct w_steam_iface *_this, uint32_t nDeviceIndex, int8_t bEnable)
|
||||
{
|
||||
struct IVRTrackedCamera_IVRTrackedCamera_001_EnableCameraForStreaming_params params =
|
||||
{
|
||||
@ -106,7 +106,7 @@ bool __thiscall winIVRTrackedCamera_IVRTrackedCamera_001_EnableCameraForStreamin
|
||||
return params._ret;
|
||||
}
|
||||
|
||||
bool __thiscall winIVRTrackedCamera_IVRTrackedCamera_001_StartVideoStream(struct w_steam_iface *_this, uint32_t nDeviceIndex)
|
||||
int8_t __thiscall winIVRTrackedCamera_IVRTrackedCamera_001_StartVideoStream(struct w_steam_iface *_this, uint32_t nDeviceIndex)
|
||||
{
|
||||
struct IVRTrackedCamera_IVRTrackedCamera_001_StartVideoStream_params params =
|
||||
{
|
||||
@ -118,7 +118,7 @@ bool __thiscall winIVRTrackedCamera_IVRTrackedCamera_001_StartVideoStream(struct
|
||||
return params._ret;
|
||||
}
|
||||
|
||||
bool __thiscall winIVRTrackedCamera_IVRTrackedCamera_001_StopVideoStream(struct w_steam_iface *_this, uint32_t nDeviceIndex)
|
||||
int8_t __thiscall winIVRTrackedCamera_IVRTrackedCamera_001_StopVideoStream(struct w_steam_iface *_this, uint32_t nDeviceIndex)
|
||||
{
|
||||
struct IVRTrackedCamera_IVRTrackedCamera_001_StopVideoStream_params params =
|
||||
{
|
||||
@ -130,7 +130,7 @@ bool __thiscall winIVRTrackedCamera_IVRTrackedCamera_001_StopVideoStream(struct
|
||||
return params._ret;
|
||||
}
|
||||
|
||||
bool __thiscall winIVRTrackedCamera_IVRTrackedCamera_001_IsVideoStreamActive(struct w_steam_iface *_this, uint32_t nDeviceIndex)
|
||||
int8_t __thiscall winIVRTrackedCamera_IVRTrackedCamera_001_IsVideoStreamActive(struct w_steam_iface *_this, uint32_t nDeviceIndex)
|
||||
{
|
||||
struct IVRTrackedCamera_IVRTrackedCamera_001_IsVideoStreamActive_params params =
|
||||
{
|
||||
@ -156,7 +156,7 @@ float __thiscall winIVRTrackedCamera_IVRTrackedCamera_001_GetVideoStreamElapsedT
|
||||
|
||||
extern const w_CameraVideoStreamFrame_t_0914 * __thiscall winIVRTrackedCamera_IVRTrackedCamera_001_GetVideoStreamFrame(struct w_steam_iface *_this, uint32_t nDeviceIndex);
|
||||
|
||||
bool __thiscall winIVRTrackedCamera_IVRTrackedCamera_001_ReleaseVideoStreamFrame(struct w_steam_iface *_this, uint32_t nDeviceIndex, const w_CameraVideoStreamFrame_t_0914 *pFrameImage)
|
||||
int8_t __thiscall winIVRTrackedCamera_IVRTrackedCamera_001_ReleaseVideoStreamFrame(struct w_steam_iface *_this, uint32_t nDeviceIndex, const w_CameraVideoStreamFrame_t_0914 *pFrameImage)
|
||||
{
|
||||
struct IVRTrackedCamera_IVRTrackedCamera_001_ReleaseVideoStreamFrame_params params =
|
||||
{
|
||||
@ -169,7 +169,7 @@ bool __thiscall winIVRTrackedCamera_IVRTrackedCamera_001_ReleaseVideoStreamFrame
|
||||
return params._ret;
|
||||
}
|
||||
|
||||
bool __thiscall winIVRTrackedCamera_IVRTrackedCamera_001_SetAutoExposure(struct w_steam_iface *_this, uint32_t nDeviceIndex, bool bEnable)
|
||||
int8_t __thiscall winIVRTrackedCamera_IVRTrackedCamera_001_SetAutoExposure(struct w_steam_iface *_this, uint32_t nDeviceIndex, int8_t bEnable)
|
||||
{
|
||||
struct IVRTrackedCamera_IVRTrackedCamera_001_SetAutoExposure_params params =
|
||||
{
|
||||
@ -182,7 +182,7 @@ bool __thiscall winIVRTrackedCamera_IVRTrackedCamera_001_SetAutoExposure(struct
|
||||
return params._ret;
|
||||
}
|
||||
|
||||
bool __thiscall winIVRTrackedCamera_IVRTrackedCamera_001_PauseVideoStream(struct w_steam_iface *_this, uint32_t nDeviceIndex)
|
||||
int8_t __thiscall winIVRTrackedCamera_IVRTrackedCamera_001_PauseVideoStream(struct w_steam_iface *_this, uint32_t nDeviceIndex)
|
||||
{
|
||||
struct IVRTrackedCamera_IVRTrackedCamera_001_PauseVideoStream_params params =
|
||||
{
|
||||
@ -194,7 +194,7 @@ bool __thiscall winIVRTrackedCamera_IVRTrackedCamera_001_PauseVideoStream(struct
|
||||
return params._ret;
|
||||
}
|
||||
|
||||
bool __thiscall winIVRTrackedCamera_IVRTrackedCamera_001_ResumeVideoStream(struct w_steam_iface *_this, uint32_t nDeviceIndex)
|
||||
int8_t __thiscall winIVRTrackedCamera_IVRTrackedCamera_001_ResumeVideoStream(struct w_steam_iface *_this, uint32_t nDeviceIndex)
|
||||
{
|
||||
struct IVRTrackedCamera_IVRTrackedCamera_001_ResumeVideoStream_params params =
|
||||
{
|
||||
@ -206,7 +206,7 @@ bool __thiscall winIVRTrackedCamera_IVRTrackedCamera_001_ResumeVideoStream(struc
|
||||
return params._ret;
|
||||
}
|
||||
|
||||
bool __thiscall winIVRTrackedCamera_IVRTrackedCamera_001_IsVideoStreamPaused(struct w_steam_iface *_this, uint32_t nDeviceIndex)
|
||||
int8_t __thiscall winIVRTrackedCamera_IVRTrackedCamera_001_IsVideoStreamPaused(struct w_steam_iface *_this, uint32_t nDeviceIndex)
|
||||
{
|
||||
struct IVRTrackedCamera_IVRTrackedCamera_001_IsVideoStreamPaused_params params =
|
||||
{
|
||||
@ -218,7 +218,7 @@ bool __thiscall winIVRTrackedCamera_IVRTrackedCamera_001_IsVideoStreamPaused(str
|
||||
return params._ret;
|
||||
}
|
||||
|
||||
bool __thiscall winIVRTrackedCamera_IVRTrackedCamera_001_GetCameraDistortion(struct w_steam_iface *_this, uint32_t nDeviceIndex, float flInputU, float flInputV, float *pflOutputU, float *pflOutputV)
|
||||
int8_t __thiscall winIVRTrackedCamera_IVRTrackedCamera_001_GetCameraDistortion(struct w_steam_iface *_this, uint32_t nDeviceIndex, float flInputU, float flInputV, float *pflOutputU, float *pflOutputV)
|
||||
{
|
||||
struct IVRTrackedCamera_IVRTrackedCamera_001_GetCameraDistortion_params params =
|
||||
{
|
||||
@ -234,7 +234,7 @@ bool __thiscall winIVRTrackedCamera_IVRTrackedCamera_001_GetCameraDistortion(str
|
||||
return params._ret;
|
||||
}
|
||||
|
||||
bool __thiscall winIVRTrackedCamera_IVRTrackedCamera_001_GetCameraProjection(struct w_steam_iface *_this, uint32_t nDeviceIndex, float flWidthPixels, float flHeightPixels, float flZNear, float flZFar, HmdMatrix44_t *pProjection)
|
||||
int8_t __thiscall winIVRTrackedCamera_IVRTrackedCamera_001_GetCameraProjection(struct w_steam_iface *_this, uint32_t nDeviceIndex, float flWidthPixels, float flHeightPixels, float flZNear, float flZFar, HmdMatrix44_t *pProjection)
|
||||
{
|
||||
struct IVRTrackedCamera_IVRTrackedCamera_001_GetCameraProjection_params params =
|
||||
{
|
||||
@ -355,7 +355,7 @@ const char * __thiscall winIVRTrackedCamera_IVRTrackedCamera_002_GetCameraErrorN
|
||||
return params._ret;
|
||||
}
|
||||
|
||||
uint32_t __thiscall winIVRTrackedCamera_IVRTrackedCamera_002_HasCamera(struct w_steam_iface *_this, uint32_t nDeviceIndex, bool *pHasCamera)
|
||||
uint32_t __thiscall winIVRTrackedCamera_IVRTrackedCamera_002_HasCamera(struct w_steam_iface *_this, uint32_t nDeviceIndex, int8_t *pHasCamera)
|
||||
{
|
||||
struct IVRTrackedCamera_IVRTrackedCamera_002_HasCamera_params params =
|
||||
{
|
||||
@ -545,7 +545,7 @@ const char * __thiscall winIVRTrackedCamera_IVRTrackedCamera_003_GetCameraErrorN
|
||||
return params._ret;
|
||||
}
|
||||
|
||||
uint32_t __thiscall winIVRTrackedCamera_IVRTrackedCamera_003_HasCamera(struct w_steam_iface *_this, uint32_t nDeviceIndex, bool *pHasCamera)
|
||||
uint32_t __thiscall winIVRTrackedCamera_IVRTrackedCamera_003_HasCamera(struct w_steam_iface *_this, uint32_t nDeviceIndex, int8_t *pHasCamera)
|
||||
{
|
||||
struct IVRTrackedCamera_IVRTrackedCamera_003_HasCamera_params params =
|
||||
{
|
||||
@ -805,7 +805,7 @@ const char * __thiscall winIVRTrackedCamera_IVRTrackedCamera_004_GetCameraErrorN
|
||||
return params._ret;
|
||||
}
|
||||
|
||||
uint32_t __thiscall winIVRTrackedCamera_IVRTrackedCamera_004_HasCamera(struct w_steam_iface *_this, uint32_t nDeviceIndex, bool *pHasCamera)
|
||||
uint32_t __thiscall winIVRTrackedCamera_IVRTrackedCamera_004_HasCamera(struct w_steam_iface *_this, uint32_t nDeviceIndex, int8_t *pHasCamera)
|
||||
{
|
||||
struct IVRTrackedCamera_IVRTrackedCamera_004_HasCamera_params params =
|
||||
{
|
||||
@ -1065,7 +1065,7 @@ const char * __thiscall winIVRTrackedCamera_IVRTrackedCamera_005_GetCameraErrorN
|
||||
return params._ret;
|
||||
}
|
||||
|
||||
uint32_t __thiscall winIVRTrackedCamera_IVRTrackedCamera_005_HasCamera(struct w_steam_iface *_this, uint32_t nDeviceIndex, bool *pHasCamera)
|
||||
uint32_t __thiscall winIVRTrackedCamera_IVRTrackedCamera_005_HasCamera(struct w_steam_iface *_this, uint32_t nDeviceIndex, int8_t *pHasCamera)
|
||||
{
|
||||
struct IVRTrackedCamera_IVRTrackedCamera_005_HasCamera_params params =
|
||||
{
|
||||
@ -1329,7 +1329,7 @@ const char * __thiscall winIVRTrackedCamera_IVRTrackedCamera_006_GetCameraErrorN
|
||||
return params._ret;
|
||||
}
|
||||
|
||||
uint32_t __thiscall winIVRTrackedCamera_IVRTrackedCamera_006_HasCamera(struct w_steam_iface *_this, uint32_t nDeviceIndex, bool *pHasCamera)
|
||||
uint32_t __thiscall winIVRTrackedCamera_IVRTrackedCamera_006_HasCamera(struct w_steam_iface *_this, uint32_t nDeviceIndex, int8_t *pHasCamera)
|
||||
{
|
||||
struct IVRTrackedCamera_IVRTrackedCamera_006_HasCamera_params params =
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user