vrclient: Split unixlib and build with msvcrt.

CW-Bug-Id: #22729
This commit is contained in:
Rémi Bernon 2023-11-07 20:56:28 +01:00 committed by Arkadiusz Hiler
parent 838d14d66e
commit 37785cfbd3
122 changed files with 558 additions and 69 deletions

View file

@ -11,13 +11,13 @@
#include "vrclient_structs.h"
#include "wine/unixlib.h"
#ifdef __cplusplus
extern "C"
{
#endif /* __cplusplus */
#include "wine/unixlib.h"
#include <pshpack1.h>
struct render_model
@ -69,10 +69,7 @@ struct vrclient_VRClientCoreFactory_params
#include <poppack.h>
typedef NTSTATUS (*unixlib_entry_t)( void *args );
extern const unixlib_entry_t __wine_unix_call_funcs[];
#define VRCLIENT_CALL( code, args ) __wine_unix_call_funcs[unix_ ## code]( args )
#define VRCLIENT_CALL( code, args ) WINE_UNIX_CALL( unix_ ## code, args )
#ifdef __cplusplus
} /* extern "C" */