VRClientCoreFactory (and presumably HmdSystemFactory) need to be cdecl to match OpenVR SDK (Closes 8749) #8771
+4
−4
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
The
VRClientCoreFactoryfunction is declared in the OpenVR SDK without a calling convention. According to Microsoft cdecl is the default calling convention for C and C++ functions, so this means that the user side needs VRClientCoreFactory to be cdecl and not stdcall. This only affects x86 as the compiler ignoresstdcallandcdeclwhen compiling for x64 mode. Without this the callingVR_Initfrom x86 code crashes.Also switched the spec file to be
cdeclto get rid of some longstanding linker warnings. Presumably it didn't matter that these were wrong asVRClientCoreFactoryis only called by the OpenVR SDKVR_Init, which manually loads the library, performing an explicit symbol lookup, and calls through acdeclfunction pointer.