Mercurial > mplayer.hg
annotate mangle.h @ 8246:a8128852c18d
Add Quartz (OS X GUI) to SDL window-capable list, patch by Tomas Hurka <tom at hukatronic.cz>
author | atmos4 |
---|---|
date | Thu, 21 Nov 2002 22:52:54 +0000 |
parents | a8caf30732de |
children | 9d55352cea20 |
rev | line source |
---|---|
4243 | 1 /* mangle.h - This file has some CPP macros to deal with different symbol |
2 * mangling across binary formats. | |
3 * (c)2002 by Felix Buenemann <atmosfear at users.sourceforge.net> | |
4 * File licensed under the GPL, see http://www.fsf.org/ for more info. | |
5 */ | |
6 | |
7 #ifndef __MANGLE_H | |
8 #define __MANGLE_H | |
9 | |
10 /* Feel free to add more to the list, eg. a.out IMO */ | |
6826
a8caf30732de
Flush from my local tree, probably more future safe mangle decision of OpenBSD, in case they switch over to ELF.
atmos4
parents:
5872
diff
changeset
|
11 #if defined(__CYGWIN__) || defined(__OS2__) || \ |
a8caf30732de
Flush from my local tree, probably more future safe mangle decision of OpenBSD, in case they switch over to ELF.
atmos4
parents:
5872
diff
changeset
|
12 (defined(__OpenBSD__) && !defined(ELF)) |
4243 | 13 #define MANGLE(a) "_" #a |
14 #else | |
15 #define MANGLE(a) #a | |
16 #endif | |
17 | |
18 #endif /* !__MANGLE_H */ | |
19 |