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