PACKON.H
资源名称:packet32.zip [点击查看]
上传用户:d748196
上传日期:2007-01-07
资源大小:42k
文件大小:1k
源码类别:
网络截获/分析
开发平台:
WINDOWS
- /*++
- Copyright (c) 1990,91 Microsoft Corporation
- Module Name:
- packon.h
- Abstract:
- This file turns packing of structures on. (That is, it disables
- automatic alignment of structure fields.) An include file is needed
- because various compilers do this in different ways.
- The file packoff.h is the complement to this file.
- Author:
- Chuck Lenzmeier (chuckl) 4-Mar-1990
- Revision History:
- 15-Apr-1991 JohnRo
- Created lint-able variant.
- --*/
- #if ! (defined(lint) || defined(_lint))
- #if ( _MSC_VER >= 800 )
- #pragma warning(disable:4103)
- #endif
- #pragma pack(1) // x86, MS compiler; MIPS, MIPS compiler
- #endif // ! (defined(lint) || defined(_lint))