blob: 3d8a64f3515cb57f0731c29c92cd3e79f70035c0 (
plain)
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
32
33
|
/* -*- Mode: C; c-basic-offset: 4 -*- */
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include <Python.h>
#include <pygobject.h>
/* include any extra headers needed here */
void pypango_register_classes(PyObject *d);
void pypango_add_constants(PyObject *module, const gchar *strip_prefix);
extern PyMethodDef pypango_functions[];
DL_EXPORT(void)
initpango(void)
{
PyObject *m, *d;
/* perform any initialisation required by the library here */
m = Py_InitModule("pango", pypango_functions);
d = PyModule_GetDict(m);
init_pygobject();
pypango_register_classes(d);
pypango_add_constants(m, "PANGO_");
/* add anything else to the module dictionary (such as constants) */
if (PyErr_Occurred())
Py_FatalError("could not initialise module pango");
}
|