vrshoot

annotate libs/ft2static/freetype/internal/ftpic.h @ 0:b2f14e535253

initial commit
author John Tsiombikas <nuclear@member.fsf.org>
date Sat, 01 Feb 2014 19:58:19 +0200
parents
children
rev   line source
nuclear@0 1 /***************************************************************************/
nuclear@0 2 /* */
nuclear@0 3 /* ftpic.h */
nuclear@0 4 /* */
nuclear@0 5 /* The FreeType position independent code services (declaration). */
nuclear@0 6 /* */
nuclear@0 7 /* Copyright 2009 by */
nuclear@0 8 /* Oran Agra and Mickey Gabel. */
nuclear@0 9 /* */
nuclear@0 10 /* This file is part of the FreeType project, and may only be used, */
nuclear@0 11 /* modified, and distributed under the terms of the FreeType project */
nuclear@0 12 /* license, LICENSE.TXT. By continuing to use, modify, or distribute */
nuclear@0 13 /* this file you indicate that you have read the license and */
nuclear@0 14 /* understand and accept it fully. */
nuclear@0 15 /* */
nuclear@0 16 /***************************************************************************/
nuclear@0 17
nuclear@0 18 /*************************************************************************/
nuclear@0 19 /* */
nuclear@0 20 /* Modules that ordinarily have const global data that need address */
nuclear@0 21 /* can instead define pointers here. */
nuclear@0 22 /* */
nuclear@0 23 /*************************************************************************/
nuclear@0 24
nuclear@0 25
nuclear@0 26 #ifndef __FTPIC_H__
nuclear@0 27 #define __FTPIC_H__
nuclear@0 28
nuclear@0 29
nuclear@0 30 FT_BEGIN_HEADER
nuclear@0 31
nuclear@0 32 #ifdef FT_CONFIG_OPTION_PIC
nuclear@0 33
nuclear@0 34 typedef struct FT_PIC_Container_
nuclear@0 35 {
nuclear@0 36 /* pic containers for base */
nuclear@0 37 void* base;
nuclear@0 38 /* pic containers for modules */
nuclear@0 39 void* autofit;
nuclear@0 40 void* cff;
nuclear@0 41 void* pshinter;
nuclear@0 42 void* psnames;
nuclear@0 43 void* raster;
nuclear@0 44 void* sfnt;
nuclear@0 45 void* smooth;
nuclear@0 46 void* truetype;
nuclear@0 47 } FT_PIC_Container;
nuclear@0 48
nuclear@0 49 /* Initialize the various function tables, structs, etc. stored in the container. */
nuclear@0 50 FT_BASE( FT_Error )
nuclear@0 51 ft_pic_container_init( FT_Library library );
nuclear@0 52
nuclear@0 53
nuclear@0 54 /* Destroy the contents of the container. */
nuclear@0 55 FT_BASE( void )
nuclear@0 56 ft_pic_container_destroy( FT_Library library );
nuclear@0 57
nuclear@0 58 #endif /* FT_CONFIG_OPTION_PIC */
nuclear@0 59
nuclear@0 60 /* */
nuclear@0 61
nuclear@0 62 FT_END_HEADER
nuclear@0 63
nuclear@0 64 #endif /* __FTPIC_H__ */
nuclear@0 65
nuclear@0 66
nuclear@0 67 /* END */