mirror of
https://github.com/reactos/reactos.git
synced 2025-04-04 12:39:35 +00:00
[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.
This commit is contained in:
parent
3af1141a61
commit
64bc9c233f
1 changed files with 1 additions and 2 deletions
|
@ -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 */
|
||||
|
|
Loading…
Reference in a new issue