// // Copyright (c) Microsoft Corporation. All rights reserved. // // // Use of this source code is subject to the terms of the Microsoft end-user // license agreement (EULA) under which you licensed this SOFTWARE PRODUCT. // If you did not accept the terms of the EULA, you are not authorized to use // this source code. For a copy of the EULA, please see the LICENSE.RTF on your // install media. // /*++ 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. --*/ #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))