https://git.reactos.org/?p=reactos.git;a=commitdiff;h=64bc9c233f2a725c20b2b9...
commit 64bc9c233f2a725c20b2b9750c64988a50cb927c Author: Timo Kreuzer timo.kreuzer@reactos.org AuthorDate: Sat Feb 22 17:27:31 2020 +0100 Commit: Timo Kreuzer timo.kreuzer@reactos.org CommitDate: Sat Mar 14 10:26:21 2020 +0100
[HOST] Do not pack structures
Most of them are unaffected by packing, the ones that are affected have pointers, and packing them will only misalign them, but not making the structures 32 bit compatible. --- sdk/include/host/typedefs.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/sdk/include/host/typedefs.h b/sdk/include/host/typedefs.h index eaa2c9f5c06..df451c3344f 100644 --- a/sdk/include/host/typedefs.h +++ b/sdk/include/host/typedefs.h @@ -82,7 +82,7 @@ typedef WORD LANGID; #define MAXUSHORT USHRT_MAX
/* Widely used structures */ -#include <pshpack4.h> + #ifndef _HAVE_RTL_BITMAP typedef struct _RTL_BITMAP { @@ -138,7 +138,6 @@ typedef struct _UNICODE_STRING } UNICODE_STRING, *PUNICODE_STRING; #endif
-#include <poppack.h>
#ifndef _HAVE_LIST_ENTRY /* List Functions */