mirror of
https://git.suyu.dev/suyu/Yucom.git
synced 2026-01-04 21:54:42 +01:00
vrclient: Use 32-bit build for thiscall wrappers
This commit is contained in:
parent
2eda0d235b
commit
181eb3a68f
20 changed files with 1453 additions and 1453 deletions
|
|
@ -12298,14 +12298,14 @@ EVRTrackedCameraError __thiscall IVRTrackedCamera_002_AcquireVideoStreamingServi
|
|||
EVRTrackedCameraError __thiscall IVRTrackedCamera_002_ReleaseVideoStreamingService(void *_this, TrackedCameraHandle_t hTrackedCamera)
|
||||
{
|
||||
push_ptr_parameter(_this);
|
||||
push_uint64_parameter(hTrackedCamera);
|
||||
push_uint32_parameter(hTrackedCamera);
|
||||
return 0;
|
||||
}
|
||||
|
||||
EVRTrackedCameraError __thiscall IVRTrackedCamera_002_GetVideoStreamFrameBuffer(void *_this, TrackedCameraHandle_t hTrackedCamera, EVRTrackedCameraFrameType eFrameType, void * pFrameBuffer, uint32_t nFrameBufferSize, CameraVideoStreamFrameHeader_t * pFrameHeader, uint32_t nFrameHeaderSize)
|
||||
{
|
||||
push_ptr_parameter(_this);
|
||||
push_uint64_parameter(hTrackedCamera);
|
||||
push_uint32_parameter(hTrackedCamera);
|
||||
push_uint32_parameter(eFrameType);
|
||||
push_ptr_parameter(pFrameBuffer);
|
||||
push_uint32_parameter(nFrameBufferSize);
|
||||
|
|
|
|||
|
|
@ -14431,7 +14431,7 @@ void test_capi_thunks_IVRTrackedCamera_002(void)
|
|||
clear_parameters();
|
||||
capi_IVRTrackedCamera_002_ReleaseVideoStreamingService(1);
|
||||
check_ptr_parameter("IVRTrackedCamera_002_ReleaseVideoStreamingService", this_ptr_value);
|
||||
check_uint64_parameter("IVRTrackedCamera_002_ReleaseVideoStreamingService", 1);
|
||||
check_uint32_parameter("IVRTrackedCamera_002_ReleaseVideoStreamingService", 1);
|
||||
|
||||
init_thunk(t, this_ptr_value, IVRTrackedCamera_002_GetVideoStreamFrameBuffer, 6, FALSE, FALSE);
|
||||
EVRTrackedCameraError (__stdcall *capi_IVRTrackedCamera_002_GetVideoStreamFrameBuffer)(TrackedCameraHandle_t hTrackedCamera, EVRTrackedCameraFrameType eFrameType, void * pFrameBuffer, uint32_t nFrameBufferSize, CameraVideoStreamFrameHeader_t * pFrameHeader, uint32_t nFrameHeaderSize) = (void *)t;
|
||||
|
|
@ -14439,7 +14439,7 @@ void test_capi_thunks_IVRTrackedCamera_002(void)
|
|||
clear_parameters();
|
||||
capi_IVRTrackedCamera_002_GetVideoStreamFrameBuffer(1, 2, (void *)3, 4, (void *)5, 6);
|
||||
check_ptr_parameter("IVRTrackedCamera_002_GetVideoStreamFrameBuffer", this_ptr_value);
|
||||
check_uint64_parameter("IVRTrackedCamera_002_GetVideoStreamFrameBuffer", 1);
|
||||
check_uint32_parameter("IVRTrackedCamera_002_GetVideoStreamFrameBuffer", 1);
|
||||
check_uint32_parameter("IVRTrackedCamera_002_GetVideoStreamFrameBuffer", 2);
|
||||
check_ptr_parameter("IVRTrackedCamera_002_GetVideoStreamFrameBuffer", (void *)3);
|
||||
check_uint32_parameter("IVRTrackedCamera_002_GetVideoStreamFrameBuffer", 4);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue