mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 19:03:00 +00:00
[NTVDM]
The DOS_MCB structure needs to be byte-aligned. svn path=/trunk/; revision=67233
This commit is contained in:
parent
a80d5b8e9d
commit
e9b43f93b7
1 changed files with 2 additions and 0 deletions
|
@ -18,6 +18,7 @@ enum DOS_ALLOC_STRATEGY
|
||||||
DOS_ALLOC_LAST_FIT
|
DOS_ALLOC_LAST_FIT
|
||||||
};
|
};
|
||||||
|
|
||||||
|
#pragma pack(push, 1)
|
||||||
typedef struct _DOS_MCB
|
typedef struct _DOS_MCB
|
||||||
{
|
{
|
||||||
CHAR BlockType;
|
CHAR BlockType;
|
||||||
|
@ -26,6 +27,7 @@ typedef struct _DOS_MCB
|
||||||
BYTE Unused[3];
|
BYTE Unused[3];
|
||||||
CHAR Name[8];
|
CHAR Name[8];
|
||||||
} DOS_MCB, *PDOS_MCB;
|
} DOS_MCB, *PDOS_MCB;
|
||||||
|
#pragma pack(pop)
|
||||||
|
|
||||||
/* VARIABLES ******************************************************************/
|
/* VARIABLES ******************************************************************/
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue