Implemented the underline and strikeout text attributes for the Wine
[wine] / include / pshpack4.h
1 #ifndef __WINE_PSHPACK_H
2 #define __WINE_PSHPACK_H 4
3
4 #if defined(__GNUC__) || defined(__SUNPRO_CC)
5 #pragma pack(4)
6 #elif defined(__SUNPRO_C)
7 #warning "Assumes default alignment is 4"
8 #pragma pack()
9 #elif !defined(RC_INVOKED)
10 #error "4 as alignment isn't supported by the compiler"
11 #endif /* defined(__GNUC__) || defined(__SUNPRO_CC) ; !defined(RC_INVOKED) */
12
13 #else /* !defined(__WINE_PSHPACK_H) */
14 #error "Nested pushing of alignment isn't supported by the compiler"
15 #endif /* !defined(__WINE_PSHPACK_H) */
16