Mercurial > mplayer.hg
annotate loader/wine/poppack.h @ 25971:64b1e4ea04fc
Always display Icy-Metadata if available, whether we recognize an ICY-Server
or not. I can not think of a reason why this should hurt.
author | reimar |
---|---|
date | Fri, 15 Feb 2008 20:32:45 +0000 |
parents | f1b223278b20 |
children | a8ea87c71d18 |
rev | line source |
---|---|
24422
c98c9e7f3bd0
Remove leading underscores from multiple inclusion guards,
diego
parents:
21290
diff
changeset
|
1 #ifdef WINE_PSHPACK_H |
c98c9e7f3bd0
Remove leading underscores from multiple inclusion guards,
diego
parents:
21290
diff
changeset
|
2 #undef WINE_PSHPACK_H |
1 | 3 |
21290
efc774a1e5a4
fix compilation for win32 dll codec support for intel osx
nplourde
parents:
1
diff
changeset
|
4 #if (defined(__GNUC__) || defined(__SUNPRO_C)) && !defined(__APPLE__) |
1 | 5 #pragma pack() |
21290
efc774a1e5a4
fix compilation for win32 dll codec support for intel osx
nplourde
parents:
1
diff
changeset
|
6 #elif defined(__SUNPRO_CC) || defined(__APPLE__) |
1 | 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 | |
25548
f1b223278b20
Consistently use just the name of the #ifdef directive in preprocessor comments.
diego
parents:
24422
diff
changeset
|
13 #else /* WINE_PSHPACK_H */ |
1 | 14 #error "Popping alignment isn't possible since no alignment has been pushed" |
25548
f1b223278b20
Consistently use just the name of the #ifdef directive in preprocessor comments.
diego
parents:
24422
diff
changeset
|
15 #endif /* WINE_PSHPACK_H */ |