PshPack8.h
上传用户:dzyhzl
上传日期:2019-04-29
资源大小:56270k
文件大小:1k
源码类别:

模拟服务器

开发平台:

C/C++

  1. /*++
  2. Copyright (c) Microsoft Corporation.  All rights reserved.
  3. Module Name:
  4.     pshpack8.h
  5. Abstract:
  6.     This file turns 8 byte packing of structures on.  (That is, it disables
  7.     automatic alignment of structure fields.)  An include file is needed
  8.     because various compilers do this in different ways.  For Microsoft
  9.     compatible compilers, this files uses the push option to the pack pragma
  10.     so that the poppack.h include file can restore the previous packing
  11.     reliably.
  12.     The file poppack.h is the complement to this file.
  13. --*/
  14. #if ! (defined(lint) || defined(RC_INVOKED))
  15. #if ( _MSC_VER >= 800 && !defined(_M_I86)) || defined(_PUSHPOP_SUPPORTED)
  16. #pragma warning(disable:4103)
  17. #if !(defined( MIDL_PASS )) || defined( __midl )
  18. #pragma pack(push,8)
  19. #else
  20. #pragma pack(8)
  21. #endif
  22. #else
  23. #pragma pack(8)
  24. #endif
  25. #endif // ! (defined(lint) || defined(RC_INVOKED))