mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-01 08:13:18 +00:00
23a5b79f56
directives.
29 lines
718 B
C
29 lines
718 B
C
#if defined(__WINE_PSHPACK_H3)
|
|
|
|
/* Depth > 3 */
|
|
# error "Alignment nesting > 3 is not supported"
|
|
|
|
#else
|
|
|
|
# if !defined(__WINE_PSHPACK_H)
|
|
# define __WINE_PSHPACK_H 2
|
|
/* Depth == 1 */
|
|
# elif !defined(__WINE_PSHPACK_H2)
|
|
# define __WINE_PSHPACK_H2 2
|
|
/* Depth == 2 */
|
|
# define __WINE_INTERNAL_POPPACK
|
|
# include "poppack.h"
|
|
# elif !defined(__WINE_PSHPACK_H3)
|
|
# define __WINE_PSHPACK_H3 2
|
|
/* Depth == 3 */
|
|
# define __WINE_INTERNAL_POPPACK
|
|
# include "poppack.h"
|
|
# endif
|
|
|
|
# if defined(__GNUC__) || defined(__SUNPRO_C) || defined(__SUNPRO_CC)
|
|
# pragma pack(2)
|
|
# elif !defined(RC_INVOKED)
|
|
# error "Adjusting the alignment is not supported with this compiler"
|
|
# endif
|
|
|
|
#endif
|