Set alignment and packing properly
All checks were successful
ci/woodpecker/push/build Pipeline was successful

This commit is contained in:
2023-02-02 17:01:18 +01:00
parent 2e2b01742a
commit 715f875c4f
2 changed files with 5 additions and 5 deletions

View File

@@ -51,10 +51,10 @@ typedef struct _LIST_ENTRY64
} LIST_ENTRY64, *PLIST_ENTRY64;
/* 128-bit 16-byte aligned XMM register */
typedef struct ALIGN(16) _M128
typedef struct _M128
{
ULONGLONG Low;
LONGLONG High;
} M128, *PM128;
} ALIGN(16) M128, *PM128;
#endif /* __XTDK_XTBASE_H */