* include/freetype/internal/compiler-macros.h [FT_COMPARE_DEF]: Tighten.
This works around Watcom C library using __watcall.
This commit is contained in:
parent
7eb9a9dbbe
commit
7f7bf6f0f0
@ -299,9 +299,9 @@ FT_BEGIN_HEADER
|
||||
#define FT_CALLBACK_DEF( x ) static x
|
||||
#endif
|
||||
|
||||
#if defined( __i386__ )
|
||||
#if defined( __GNUC__ ) && defined( __i386__ )
|
||||
#define FT_COMPARE_DEF( x ) FT_CALLBACK_DEF( x ) __attribute__(( cdecl ))
|
||||
#elif defined( _M_IX86 )
|
||||
#elif defined( _MSC_VER ) && defined( _M_IX86 )
|
||||
#define FT_COMPARE_DEF( x ) FT_CALLBACK_DEF( x ) __cdecl
|
||||
#else
|
||||
#define FT_COMPARE_DEF( x ) FT_CALLBACK_DEF( x )
|
||||
|
Loading…
Reference in New Issue
Block a user