Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
589 B

  1. /*++
  2. Copyright (c) 1990-1995 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. --*/
  11. #if ! (defined(lint) || defined(_lint))
  12. #ifdef i386
  13. #pragma warning(disable:4103)
  14. #endif
  15. #pragma pack(1) // x86, MS compiler; MIPS, MIPS compiler
  16. #endif // ! (defined(lint) || defined(_lint))