From 7588e8cb68b913e73759b32e95dc2950454fa787 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Herm=C3=A8s=20B=C3=A9lusca-Ma=C3=AFto?= Date: Tue, 17 Sep 2013 21:27:29 +0000 Subject: [PATCH] Add a fictitious (commented) field to help the reader to know that indeed, the high bits are indeed reserved. svn path=/branches/ntvdm/; revision=60188 --- include/reactos/libs/soft386/soft386.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/include/reactos/libs/soft386/soft386.h b/include/reactos/libs/soft386/soft386.h index 5d318702ac0..7f359cd88e4 100644 --- a/include/reactos/libs/soft386/soft386.h +++ b/include/reactos/libs/soft386/soft386.h @@ -168,7 +168,7 @@ typedef union _SOFT386_REG }; USHORT LowWord; }; - ULONG Long; + ULONG Long; } SOFT386_REG, *PSOFT386_REG; typedef struct _SOFT386_SEG_REG @@ -251,6 +251,8 @@ typedef union _SOFT386_FLAGS_REG ULONG Vif : 1; ULONG Vip : 1; ULONG Id : 1; + + // ULONG Reserved : 10; }; } SOFT386_FLAGS_REG, *PSOFT386_FLAGS_REG;