| OLD | NEW |
| 1 /***************************************************************************/ | 1 /***************************************************************************/ |
| 2 /* */ | 2 /* */ |
| 3 /* ftapi.c */ | 3 /* ftapi.c */ |
| 4 /* */ | 4 /* */ |
| 5 /* The FreeType compatibility functions (body). */ | 5 /* The FreeType compatibility functions (body). */ |
| 6 /* */ | 6 /* */ |
| 7 /* Copyright 2002 by */ | 7 /* Copyright 2002 by */ |
| 8 /* David Turner, Robert Wilhelm, and Werner Lemberg. */ | 8 /* David Turner, Robert Wilhelm, and Werner Lemberg. */ |
| 9 /* */ | 9 /* */ |
| 10 /* This file is part of the FreeType project, and may only be used, */ | 10 /* This file is part of the FreeType project, and may only be used, */ |
| 11 /* modified, and distributed under the terms of the FreeType project */ | 11 /* modified, and distributed under the terms of the FreeType project */ |
| 12 /* license, LICENSE.TXT. By continuing to use, modify, or distribute */ | 12 /* license, LICENSE.TXT. By continuing to use, modify, or distribute */ |
| 13 /* this file you indicate that you have read the license and */ | 13 /* this file you indicate that you have read the license and */ |
| 14 /* understand and accept it fully. */ | 14 /* understand and accept it fully. */ |
| 15 /* */ | 15 /* */ |
| 16 /***************************************************************************/ | 16 /***************************************************************************/ |
| 17 | 17 |
| 18 | 18 |
| 19 #include "../../include/ft2build.h" | 19 #include <ft2build.h> |
| 20 #include "../../include/freetype/ftlist.h" | 20 #include FT_LIST_H |
| 21 #include "../../include/freetype/ftoutln.h" | 21 #include FT_OUTLINE_H |
| 22 #include "../../include/freetype/internal/ftobjs.h" | 22 #include FT_INTERNAL_OBJECTS_H |
| 23 #include "../../include/freetype/internal/ftdebug.h" | 23 #include FT_INTERNAL_DEBUG_H |
| 24 #include "../../include/freetype/internal/ftstream.h" | 24 #include FT_INTERNAL_STREAM_H |
| 25 #include "../../include/freetype/tttables.h" | 25 #include FT_TRUETYPE_TABLES_H |
| 26 #include "../../include/freetype/ftoutln.h" | 26 #include FT_OUTLINE_H |
| 27 | 27 |
| 28 | 28 |
| 29 /*************************************************************************/ | 29 /*************************************************************************/ |
| 30 /*************************************************************************/ | 30 /*************************************************************************/ |
| 31 /*************************************************************************/ | 31 /*************************************************************************/ |
| 32 /**** ****/ | 32 /**** ****/ |
| 33 /**** ****/ | 33 /**** ****/ |
| 34 /**** C O M P A T I B I L I T Y ****/ | 34 /**** C O M P A T I B I L I T Y ****/ |
| 35 /**** ****/ | 35 /**** ****/ |
| 36 /**** ****/ | 36 /**** ****/ |
| (...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 112 | 112 |
| 113 | 113 |
| 114 FT_BASE_DEF( void ) | 114 FT_BASE_DEF( void ) |
| 115 FT_Forget_Frame( FT_Stream stream ) | 115 FT_Forget_Frame( FT_Stream stream ) |
| 116 { | 116 { |
| 117 FT_Stream_ExitFrame( stream ); | 117 FT_Stream_ExitFrame( stream ); |
| 118 } | 118 } |
| 119 | 119 |
| 120 | 120 |
| 121 /* END */ | 121 /* END */ |
| OLD | NEW |