mirror of
https://github.com/reactos/reactos.git
synced 2025-08-04 16:35:49 +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
|
||||
};
|
||||
|
||||
#pragma pack(push, 1)
|
||||
typedef struct _DOS_MCB
|
||||
{
|
||||
CHAR BlockType;
|
||||
|
@ -26,6 +27,7 @@ typedef struct _DOS_MCB
|
|||
BYTE Unused[3];
|
||||
CHAR Name[8];
|
||||
} DOS_MCB, *PDOS_MCB;
|
||||
#pragma pack(pop)
|
||||
|
||||
/* VARIABLES ******************************************************************/
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue