[Mplayer-cvslog] CVS: main asmlink.h,NONE,1.1

Atmosfear atmos4 at mplayer.dev.hu
Tue Aug 7 18:33:12 CEST 2001


Update of /cvsroot/mplayer/main
In directory mplayer:/var/tmp.root/cvs-serv11216

Added Files:
	asmlink.h 
Log Message:
Porting helper for asm linking for aout and pe.


--- NEW FILE ---
/* Some binary formats link ams functions with an underscore prepended;  *
 * we need to take care of that. - Atmos                                 *       
 * Note: this should IMHO apply to other *NIX with a.out, too            *
 * Copyleft 2001 by Felix Buenemann <atmosfear at users.sourceforge.net> *
 * Licensed under the GPL, see www.gnu.org for more info                 */
#ifndef _ASMLINK_H_
#define _ASMLINK_H_
#if defined(__OpenBSD__) || defined(__CYGWIN__) || defined(WIN32)
#define ASMLINK(x) x
#else
#define ASMLINK(x) _##x
#endif

#endif /* !_ASMLINK_H_ */  




More information about the MPlayer-cvslog mailing list