Rev 2877 | Blame | Compare with Previous | Last modification | View Log | RSS feed
/*++Copyright 1995 - 1998 Microsoft CorporationModule Name:pshpack1.hAbstract:This file turns 1 byte packing of structures on. (That is, it disablesautomatic alignment of structure fields.) An include file is neededbecause various compilers do this in different ways. For Microsoftcompatible compilers, this files uses the push option to the pack pragmaso that the poppack.h include file can restore the previous packingreliably.The file poppack.h is the complement to this file.--*/#if ! (defined(lint) || defined(_lint) || defined(RC_INVOKED))#if ( _MSC_VER >= 800 ) || defined(_PUSHPOP_SUPPORTED)#pragma warning(disable:4103)#if !(defined( MIDL_PASS )) || defined( __midl )#pragma pack(push)#endif#pragma pack(1)#else#pragma pack(1)#endif#endif // ! (defined(lint) || defined(_lint) || defined(RC_INVOKED))