Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions vrclient_x64/vrclient.spec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Generated from vrclient.dll by winedump

1 stdcall HmdSystemFactory(ptr ptr)
2 stdcall VRClientCoreFactory(ptr ptr)
1 cdecl HmdSystemFactory(ptr ptr)
2 cdecl VRClientCoreFactory(ptr ptr)

@ cdecl -private vrclient_init_registry()
4 changes: 2 additions & 2 deletions vrclient_x64/vrclient_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ static int load_vrclient(void)
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);
Expand All @@ -189,7 +189,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);
Expand Down