annotate loader/wine/poppack.h @ 15406:04c47e9acab3
- make use of libggiwmh if found by configure
* For now use it to set the window title
* Implement "Window-On-Top" (experimental)
- Improved dirty region handling introduced in rev 1.33.
- other minor fixes
patch by Christoph Egger <Christoph_Egger at gmx dot de>
author |
diego |
date |
Wed, 11 May 2005 08:04:13 +0000 |
parents |
3b5f5d1c5041 |
children |
efc774a1e5a4 |
rev |
line source |
1
|
1 #ifdef __WINE_PSHPACK_H
|
|
2 #undef __WINE_PSHPACK_H
|
|
3
|
|
4 #if defined(__GNUC__) || defined(__SUNPRO_C)
|
|
5 #pragma pack()
|
|
6 #elif defined(__SUNPRO_CC)
|
|
7 #warning "Assumes default alignment is 4"
|
|
8 #pragma pack(4)
|
|
9 #elif !defined(RC_INVOKED)
|
|
10 #error "Restoration of the previous alignment isn't supported by the compiler"
|
|
11 #endif /* defined(__GNUC__) || defined(__SUNPRO_C) ; !defined(RC_INVOKED) */
|
|
12
|
|
13 #else /* defined(__WINE_PSHPACK_H) */
|
|
14 #error "Popping alignment isn't possible since no alignment has been pushed"
|
|
15 #endif /* defined(__WINE_PSHPACK_H) */
|