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.

27 lines
698 B

  1. /*++
  2. Copyright (c) 1990-95 Microsoft Corporation
  3. Module Name:
  4. packoff.h
  5. Abstract:
  6. This file turns packing of structures off. (That is, it enables
  7. automatic alignment of structure fields.) An include file is needed
  8. because various compilers do this in different ways.
  9. packoff.h is the complement to packon.h. An inclusion of packoff.h
  10. MUST ALWAYS be preceded by an inclusion of packon.h, in one-to-one
  11. correspondence.
  12. --*/
  13. #if ! (defined(lint) || defined(_lint))
  14. #ifdef i386
  15. #pragma warning(disable:4103)
  16. #endif
  17. #pragma pack() // x86, MS compiler; MIPS, MIPS compiler
  18. #endif // ! (defined(lint) || defined(_lint))