mirror of
https://github.com/reactos/reactos.git
synced 2025-05-30 22:49:12 +00:00
[PSDK/XDK]: Don't hardcode "80" in the CONTEXT structure, but use the correct define.
svn path=/trunk/; revision=64522
This commit is contained in:
parent
8d73d7c58a
commit
0d076f7dd8
2 changed files with 2 additions and 2 deletions
|
@ -2974,7 +2974,7 @@ typedef struct _FLOATING_SAVE_AREA {
|
|||
DWORD ErrorSelector;
|
||||
DWORD DataOffset;
|
||||
DWORD DataSelector;
|
||||
BYTE RegisterArea[80];
|
||||
BYTE RegisterArea[SIZE_OF_80387_REGISTERS];
|
||||
DWORD Cr0NpxState;
|
||||
} FLOATING_SAVE_AREA, *PFLOATING_SAVE_AREA;
|
||||
|
||||
|
|
|
@ -1623,7 +1623,7 @@ typedef struct _FLOATING_SAVE_AREA {
|
|||
DWORD ErrorSelector;
|
||||
DWORD DataOffset;
|
||||
DWORD DataSelector;
|
||||
BYTE RegisterArea[80];
|
||||
BYTE RegisterArea[SIZE_OF_80387_REGISTERS];
|
||||
DWORD Cr0NpxState;
|
||||
} FLOATING_SAVE_AREA, *PFLOATING_SAVE_AREA;
|
||||
|
||||
|
|
Loading…
Reference in a new issue