mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-20 16:51:10 +00:00
66efde4cc5
defs files have been generated with the h2defs.py script
34 lines
717 B
C
34 lines
717 B
C
/* -*- Mode: C; c-basic-offset: 4 -*- */
|
|
#ifdef HAVE_CONFIG_H
|
|
# include "config.h"
|
|
#endif
|
|
#include <Python.h>
|
|
#include <pygobject.h>
|
|
#include <pyglib.h>
|
|
|
|
/* include any extra headers needed here */
|
|
|
|
void pyges_register_classes (PyObject * d);
|
|
extern PyMethodDef pyges_functions[];
|
|
DL_EXPORT (void)
|
|
initges (void);
|
|
|
|
DL_EXPORT (void)
|
|
initges (void)
|
|
{
|
|
PyObject *m, *d;
|
|
|
|
/* perform any initialisation required by the library here */
|
|
|
|
m = Py_InitModule ("ges", pyges_functions);
|
|
d = PyModule_GetDict (m);
|
|
|
|
init_pygobject ();
|
|
|
|
pyges_register_classes (d);
|
|
|
|
/* add anything else to the module dictionary (such as constants) */
|
|
|
|
if (PyErr_Occurred ())
|
|
Py_FatalError ("could not initialise module ges");
|
|
}
|