packon.h

来自「wince下的源代码集合打包」· C头文件 代码 · 共 29 行

H
29
字号
/*++Copyright (c) 1990-2000 Microsoft Corporation.  All rights reserved.Module Name:    packon.hAbstract:    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.--*/#if ! (defined(lint) || defined(_lint))#ifndef VXD#if i386 || defined(UNDER_CE)#pragma warning(disable:4103)#endif // i386#endif // VXD#pragma pack(1)                 // x86, MS compiler; MIPS, MIPS compiler#endif // ! (defined(lint) || defined(_lint))

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?