summaryrefslogtreecommitdiff
path: root/trunk/pango/module-defs-fc.c.win32
diff options
context:
space:
mode:
Diffstat (limited to 'trunk/pango/module-defs-fc.c.win32')
-rw-r--r--trunk/pango/module-defs-fc.c.win3231
1 files changed, 31 insertions, 0 deletions
diff --git a/trunk/pango/module-defs-fc.c.win32 b/trunk/pango/module-defs-fc.c.win32
new file mode 100644
index 00000000..a6ae1cff
--- /dev/null
+++ b/trunk/pango/module-defs-fc.c.win32
@@ -0,0 +1,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 },
+};