mirror of
https://github.com/ValveSoftware/Proton.git
synced 2025-05-15 08:02:23 +03:00
vrclient: Mark VRClientCoreFactory, HmdSystemFactory as stdcall.
This commit is contained in:
parent
bd8b11463c
commit
454533f7e3
@ -181,7 +181,7 @@ static int load_vrclient(void)
|
||||
return vrclient_loaded;
|
||||
}
|
||||
|
||||
void *CDECL HmdSystemFactory(const char *name, int *return_code)
|
||||
void * __stdcall 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);
|
||||
@ -190,7 +190,7 @@ void *CDECL HmdSystemFactory(const char *name, int *return_code)
|
||||
return create_win_interface( name, params._ret );
|
||||
}
|
||||
|
||||
void *CDECL VRClientCoreFactory(const char *name, int *return_code)
|
||||
void * __stdcall 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);
|
||||
|
Loading…
x
Reference in New Issue
Block a user