File: module-defs-win32.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 (25 lines) | stat: -rw-r--r-- 863 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
/* Hand-written, for builds using Microsoft's compiler and makefile.msc,
 * where the configure mechanism isn't used.
 */

#include "modules.h"

#ifdef PANGO_MODULE_PREFIX
void         _pango_basic_win32_script_engine_list   (PangoEngineInfo **engines,
                                                      gint             *n_engines);
void         _pango_basic_win32_script_engine_init   (GTypeModule      *module);
void         _pango_basic_win32_script_engine_exit   (void);
PangoEngine *_pango_basic_win32_script_engine_create (const char       *id);
#endif

PangoIncludedModule _pango_included_win32_modules[] = {
#ifdef PANGO_MODULE_PREFIX
 { 
   _pango_basic_win32_script_engine_list,  
   _pango_basic_win32_script_engine_init, 
   _pango_basic_win32_script_engine_exit,  
   _pango_basic_win32_script_engine_create 
 },
#endif
 { NULL, NULL, NULL },
};