Author: hbelusca Date: Fri Oct 17 02:29:48 2014 New Revision: 64774
URL: http://svn.reactos.org/svn/reactos?rev=64774&view=rev Log: [FAST486]: rename some structs and use #include <pshpack/poppack.h> for portability purposes.
Modified: trunk/reactos/include/reactos/libs/fast486/fast486.h
Modified: trunk/reactos/include/reactos/libs/fast486/fast486.h URL: http://svn.reactos.org/svn/reactos/trunk/reactos/include/reactos/libs/fast48... ============================================================================== --- trunk/reactos/include/reactos/libs/fast486/fast486.h [iso-8859-1] (original) +++ trunk/reactos/include/reactos/libs/fast486/fast486.h [iso-8859-1] Fri Oct 17 02:29:48 2014 @@ -261,14 +261,14 @@ ULONG Base; } FAST486_SEG_REG, *PFAST486_SEG_REG;
-typedef struct +typedef struct _FAST486_LDT_REG { USHORT Selector; ULONG Base; ULONG Limit; -} FAST486_LDT_REG; - -typedef struct +} FAST486_LDT_REG, *PFAST486_LDT_REG; + +typedef struct _FAST486_TASK_REG { USHORT Selector; ULONG Base; @@ -276,7 +276,7 @@ BOOLEAN Busy; } FAST486_TASK_REG, *PFAST486_TASK_REG;
-#pragma pack(push, 1) +#include <pshpack1.h>
typedef struct { @@ -350,7 +350,7 @@ /* Verify the structure size */ C_ASSERT(sizeof(FAST486_IDT_ENTRY) == sizeof(ULONGLONG));
-#pragma pack(pop) +#include <poppack.h>
typedef struct _FAST486_TABLE_REG {