From 5897024ef5d19ddaf16bce16a69e83646787eb4a Mon Sep 17 00:00:00 2001 From: Petra Lasch-Born <lasch@pik-potsdam.de> Date: Wed, 12 Dec 2018 17:02:52 +0100 Subject: [PATCH] Eine Neue Datei hochladen --- source_code/version2.2_windows/POPPACK.H | 36 ++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 source_code/version2.2_windows/POPPACK.H diff --git a/source_code/version2.2_windows/POPPACK.H b/source_code/version2.2_windows/POPPACK.H new file mode 100644 index 0000000..09c2de4 --- /dev/null +++ b/source_code/version2.2_windows/POPPACK.H @@ -0,0 +1,36 @@ +/*++ + +Copyright 1990 - 1998 Microsoft Corporation + +Module Name: + + poppack.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. + + poppack.h is the complement to pshpack?.h. An inclusion of poppack.h + MUST ALWAYS be preceded by an inclusion of one of pshpack?.h, in one-to-one + correspondence. + + For Microsoft compatible compilers, this file uses the pop option + to the pack pragma so that it can restore the previous saved by the + pshpack?.h include file. + +--*/ + +#if ! (defined(lint) || defined(_lint) || defined(RC_INVOKED)) +#if ( _MSC_VER >= 800 ) || defined(_PUSHPOP_SUPPORTED) +#pragma warning(disable:4103) +#if !(defined( MIDL_PASS )) || defined( __midl ) +#pragma pack(pop) +#else +#pragma pack() +#endif +#else +#pragma pack() +#endif +#endif // ! (defined(lint) || defined(_lint) || defined(RC_INVOKED)) -- GitLab