vrclient: Make sure the param structs are consistently aligned.

CW-Bug-Id: #22729
This commit is contained in:
Rémi Bernon 2023-10-04 21:32:49 +02:00 committed by Arkadiusz Hiler
parent 1bf0e86507
commit 8ff2cf5e8e
3 changed files with 11 additions and 0 deletions

View file

@ -3,6 +3,7 @@
#include <stdarg.h>
#include <stddef.h>
#include <assert.h>
#include <windef.h>
#include <winbase.h>
@ -17,6 +18,8 @@ extern "C"
{
#endif /* __cplusplus */
#include <pshpack1.h>
struct render_model
{
union
@ -64,6 +67,8 @@ struct vrclient_VRClientCoreFactory_params
int *return_code;
};
#include <poppack.h>
typedef NTSTATUS (*unixlib_entry_t)( void *args );
extern const unixlib_entry_t __wine_unix_call_funcs[];