mirror of
https://github.com/ValveSoftware/Proton.git
synced 2026-01-09 14:27:58 -05:00
Revert "vrclient: Mark VRClientCoreFactory, HmdSystemFactory as stdcall."
This reverts commit 454533f7e3.
This commit is contained in:
committed by
Arkadiusz Hiler
parent
1a486e2d10
commit
3f51c9f97d
@@ -273,7 +273,7 @@ static int load_vrclient( BOOL initializing_registry )
|
||||
return vrclient_loaded;
|
||||
}
|
||||
|
||||
void * __stdcall HmdSystemFactory(const char *name, int *return_code)
|
||||
void *CDECL HmdSystemFactory(const char *name, int *return_code)
|
||||
{
|
||||
struct vrclient_HmdSystemFactory_params params = {.name = name, .return_code = return_code};
|
||||
TRACE("name: %s, return_code: %p\n", name, return_code);
|
||||
@@ -282,7 +282,7 @@ void * __stdcall HmdSystemFactory(const char *name, int *return_code)
|
||||
return create_win_interface( name, params._ret );
|
||||
}
|
||||
|
||||
void * __stdcall VRClientCoreFactory(const char *name, int *return_code)
|
||||
void *CDECL VRClientCoreFactory(const char *name, int *return_code)
|
||||
{
|
||||
struct vrclient_VRClientCoreFactory_params params = {.name = name, .return_code = return_code};
|
||||
TRACE("name: %s, return_code: %p\n", name, return_code);
|
||||
|
||||
Reference in New Issue
Block a user