forked from minhngoc25a/freetype2
Put FT_New_Face() in an #ifndef macintosh switch; ftmac.c provides an extended implementation.
This commit is contained in:
parent
6012037b2d
commit
9e830c5d3f
|
@ -1232,6 +1232,10 @@
|
|||
}
|
||||
|
||||
|
||||
/* There's a Mac-specific extended implementation of FT_New_Face()
|
||||
in src/mac/ftmac.c */
|
||||
#ifndef macintosh
|
||||
|
||||
/*************************************************************************/
|
||||
/* */
|
||||
/* <Function> */
|
||||
|
@ -1288,6 +1292,8 @@
|
|||
return FT_Open_Face( library, &args, face_index, aface );
|
||||
}
|
||||
|
||||
#endif /* !macintosh */
|
||||
|
||||
|
||||
/*************************************************************************/
|
||||
/* */
|
||||
|
|
Loading…
Reference in New Issue