summaryrefslogtreecommitdiffstats
path: root/loader/wine/poppack.h
blob: 0353bfe033ec10b50c71e018e00bc245ccde6352 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifdef WINE_PSHPACK_H
#undef WINE_PSHPACK_H

#if (defined(__GNUC__) || defined(__SUNPRO_C)) && !defined(__APPLE__)
#pragma pack()
#elif defined(__SUNPRO_CC) || defined(__APPLE__)
#warning "Assumes default alignment is 4"
#pragma pack(4)
#elif !defined(RC_INVOKED)
#error "Restoration of the previous alignment isn't supported by the compiler"
#endif /* defined(__GNUC__) || defined(__SUNPRO_C) ; !defined(RC_INVOKED) */

#else /* WINE_PSHPACK_H */
#error "Popping alignment isn't possible since no alignment has been pushed"
#endif /* WINE_PSHPACK_H */