From e611b132f9b8abe35b362e5870b74bce94a1e58e Mon Sep 17 00:00:00 2001 From: Adam Date: Sat, 16 May 2020 20:51:50 -0700 Subject: initial commit --- private/inc/packoff.h | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 private/inc/packoff.h (limited to 'private/inc/packoff.h') diff --git a/private/inc/packoff.h b/private/inc/packoff.h new file mode 100644 index 000000000..0e0e2f4b2 --- /dev/null +++ b/private/inc/packoff.h @@ -0,0 +1,34 @@ +/*++ + +Copyright (c) 1990,91 Microsoft Corporation + +Module Name: + + packoff.h + +Abstract: + + This file turns packing of structures off. (That is, it enables + automatic alignment of structure fields.) An include file is needed + because various compilers do this in different ways. + + packoff.h is the complement to packon.h. An inclusion of packoff.h + MUST ALWAYS be preceded by an inclusion of packon.h, in one-to-one + correspondence. + +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() +#endif // ! (defined(lint) || defined(_lint)) -- cgit v1.2.3