lsteamclient: 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 fd574a64ca
commit 1bf0e86507
3 changed files with 10 additions and 0 deletions

View file

@ -21,6 +21,8 @@ extern "C"
#define PATH_MAX 4096
extern char g_tmppath[PATH_MAX];
#include <pshpack1.h>
struct steamclient_init_params
{
const char *steam_app_id;
@ -211,6 +213,8 @@ struct networking_message
};
};
#include <poppack.h>
typedef NTSTATUS (*unixlib_entry_t)( void *args );
extern const unixlib_entry_t __wine_unix_call_funcs[];