Mercurial > mplayer.hg
annotate mangle.h @ 4479:423ce4451ca8
tested and fixed on 2.2.x, more comments
author | alex |
---|---|
date | Sat, 02 Feb 2002 17:35:53 +0000 |
parents | 05ad38cc0338 |
children | 9917a783d5de |
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 */ | |
11 #if defined(__CYGWIN__) | |
12 #define MANGLE(a) "_" #a | |
13 #else | |
14 #define MANGLE(a) #a | |
15 #endif | |
16 | |
17 #endif /* !__MANGLE_H */ | |
18 |