File: module-defs-fc.c.win32

package info (click to toggle)
pango1.0 1.20.5-6
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 10,964 kB
  • ctags: 8,723
  • sloc: ansic: 56,966; xml: 17,474; sh: 9,288; makefile: 1,424; perl: 330; cpp: 23
file content (31 lines) | stat: -rw-r--r-- 1,119 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/* Hand-written. Once the GNU configure mechanism is used
 * on Win32, too, can be generated.
*/

#include "modules.h"

#ifdef PANGO_MODULE_PREFIX
/* by defining PANGO_MODULE_PREFIX the basic module gets include in the
 * backend library, here ../modules/basic/basic-fc.c
 * It helps the backend to not fall on its nose even with a screwed module
 * configuration. There should be at least enough fonts available to show
 * an error message ...
 */
void         _pango_basic_ft2_script_engine_list   (PangoEngineInfo **engines,
                                                    gint             *n_engines);
void         _pango_basic_ft2_script_engine_init   (GTypeModule      *module);
void         _pango_basic_ft2_script_engine_exit   (void);
PangoEngine *_pango_basic_ft2_script_engine_create (const char       *id);
#endif

PangoIncludedModule _pango_included_fc_modules[] = {
#ifdef PANGO_MODULE_PREFIX
 { 
   _pango_basic_ft2_script_engine_list,  
   _pango_basic_ft2_script_engine_init, 
   _pango_basic_ft2_script_engine_exit,  
   _pango_basic_ft2_script_engine_create 
 },
#endif
 { NULL, NULL, NULL },
};