home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World 1998 December
/
PCWorld_1998-12_cd.iso
/
software
/
sybase
/
ASA
/
asa60.exe
/
data1.cab
/
h_files
/
poppk.h
< prev
next >
Wrap
Text File
|
1998-07-27
|
1KB
|
34 lines
/* Include this file to restore the default structure packing setting. */
#if defined( __WATCOMC__ )
#pragma pack(__pop);
#elif defined( _MSC_VER ) && _MSC_VER > 800
#pragma pack( pop, pshpk )
#elif defined( __ALPHA__ ) || defined( _CFE )
#pragma pack();
#elif defined( __MWERKS__ )
#pragma options align= reset
#elif defined( __BORLANDC__ )
#pragma option -a.
#elif defined( __IBMC__ ) || defined( __IBMCPP__ )
#pragma pack( pop )
#elif defined( _AIX ) && !defined(__GNUC__)
#if defined( _PUSH_PACK_SECOND )
#undef _PUSH_PACK_SECOND
#pragma options align=_PUSH_PACK_FIRST
#elif defined( _PUSH_PACK_FIRST )
#undef _PUSH_PACK_FIRST
#pragma options align=reset
#else
#error Tried to pop a pack without a successful push
#endif
#endif
#if defined ( _NO_PRAGMA_PUSH_PACK )
#if defined( _PUSH_PACK )
#undef _PUSH_PACK
#else
#error Tried to pop a pack without a successful push
#endif
#endif