OLD | NEW |
1 /***************************************************************************/ | 1 /***************************************************************************/ |
2 /* */ | 2 /* */ |
3 /* psauxmod.c */ | 3 /* psauxmod.c */ |
4 /* */ | 4 /* */ |
5 /* FreeType auxiliary PostScript module implementation (body). */ | 5 /* FreeType auxiliary PostScript module implementation (body). */ |
6 /* */ | 6 /* */ |
7 /* Copyright 2000-2001, 2002, 2003, 2006 by */ | 7 /* Copyright 2000-2001, 2002, 2003, 2006 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, */ |
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
116 #else | 116 #else |
117 0, | 117 0, |
118 #endif | 118 #endif |
119 }; | 119 }; |
120 | 120 |
121 | 121 |
122 FT_CALLBACK_TABLE_DEF | 122 FT_CALLBACK_TABLE_DEF |
123 const FT_Module_Class psaux_module_class = | 123 const FT_Module_Class psaux_module_class = |
124 { | 124 { |
125 0, | 125 0, |
126 sizeof( FT_ModuleRec ), | 126 sizeof ( FT_ModuleRec ), |
127 "psaux", | 127 "psaux", |
128 0x20000L, | 128 0x20000L, |
129 0x20000L, | 129 0x20000L, |
130 | 130 |
131 &psaux_interface, /* module-specific interface */ | 131 &psaux_interface, /* module-specific interface */ |
132 | 132 |
133 (FT_Module_Constructor)0, | 133 (FT_Module_Constructor)0, |
134 (FT_Module_Destructor) 0, | 134 (FT_Module_Destructor) 0, |
135 (FT_Module_Requester) 0 | 135 (FT_Module_Requester) 0 |
136 }; | 136 }; |
137 | 137 |
138 | 138 |
139 /* END */ | 139 /* END */ |
OLD | NEW |