Fixed KEYLP structure for big endian.

This commit is contained in:
Eric Frias 2004-11-22 18:26:58 +00:00 committed by Alexandre Julliard
parent 6d9d114303
commit 5042516c74
1 changed files with 5 additions and 0 deletions

View File

@ -68,7 +68,9 @@ typedef union
{
struct
{
#ifndef BITFIELDS_BIGENDIAN
unsigned long count : 16;
#endif
unsigned long code : 8;
unsigned long extended : 1;
unsigned long unused : 2;
@ -76,6 +78,9 @@ typedef union
unsigned long context : 1;
unsigned long previous : 1;
unsigned long transition : 1;
#ifdef BITFIELDS_BIGENDIAN
unsigned long count : 16;
#endif
} lp1;
unsigned long lp2;
} KEYLP;