PACKON.H
上传用户:he75757
上传日期:2007-01-04
资源大小:36k
文件大小:1k
源码类别:

TCP/IP协议栈

开发平台:

Visual C++

  1. /*++
  2. Copyright (c) 1990,91  Microsoft Corporation
  3. Module Name:
  4.     packon.h
  5. Abstract:
  6.     This file turns 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.
  9.     The file packoff.h is the complement to this file.
  10. Author:
  11.     Chuck Lenzmeier (chuckl) 4-Mar-1990
  12. Revision History:
  13.     15-Apr-1991 JohnRo
  14.         Created lint-able variant.
  15. --*/
  16. #if ! (defined(lint) || defined(_lint))
  17. #ifndef VXD
  18. #if i386
  19. #pragma warning(disable:4103)
  20. #endif
  21. #endif
  22. #pragma pack(1)                 // x86, MS compiler; MIPS, MIPS compiler
  23. #endif // ! (defined(lint) || defined(_lint))