Annotation of parser3/src/include/pa_pragma_pack_begin.h, revision 1.6
1.1 paf 1: /** @file
2: Parser: "pack" attribute, use just before structures to be packed.
3: @see pa_pragma_pack_end.h
4:
1.6 ! paf 5: Copyright (c) 2001, 2003 ArtLebedev Group (http://www.artlebedev.com)
1.4 paf 6: Author: Alexandr Petrosian <paf@design.ru> (http://paf.design.ru)
1.1 paf 7: */
8:
9: #include "pa_config_includes.h"
10:
11: #if _MSC_VER
12: // used #pragma pack to change alignment
13: #pragma warning(disable:4103)
14: #endif
15:
16: #if defined(HAVE_PRAGMA_PACK)
17: #pragma pack(1)
18: #endif
E-mail: