00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019 #ifndef __PSHPIC_H__
00020 #define __PSHPIC_H__
00021
00022
00023 FT_BEGIN_HEADER
00024
00025 #include FT_INTERNAL_PIC_H
00026
00027 #ifndef FT_CONFIG_OPTION_PIC
00028
00029 #define FTPSHINTER_INTERFACE_GET pshinter_interface
00030
00031 #else
00032
00033 #include FT_INTERNAL_POSTSCRIPT_HINTS_H
00034
00035 typedef struct PSHinterPIC_
00036 {
00037 PSHinter_Interface pshinter_interface;
00038 } PSHinterPIC;
00039
00040 #define GET_PIC(lib) ((PSHinterPIC*)((lib)->pic_container.autofit))
00041 #define FTPSHINTER_INTERFACE_GET (GET_PIC(library)->pshinter_interface)
00042
00043
00044 #endif
00045
00046
00047
00048 FT_END_HEADER
00049
00050 #endif
00051
00052
00053