Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed
/*++Copyright 1990 - 1998 Microsoft CorporationModule Name:poppack.hAbstract:This file turns packing of structures off. (That is, it enablesautomatic alignment of structure fields.) An include file is neededbecause various compilers do this in different ways.poppack.h is the complement to pshpack?.h. An inclusion of poppack.hMUST ALWAYS be preceded by an inclusion of one of pshpack?.h, in one-to-onecorrespondence.For Microsoft compatible compilers, this file uses the pop optionto the pack pragma so that it can restore the previous saved by thepshpack?.h include 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(pop)#else#pragma pack()#endif#else#pragma pack()#endif#endif // ! (defined(lint) || defined(_lint) || defined(RC_INVOKED))