1 /* -*- Mode: C; c-basic-offset: 4 -*- */
8 /* include any extra headers needed here */
10 void pygst_rtsp_server_register_classes(PyObject *d);
11 extern PyMethodDef pygst_rtsp_server_functions[];
18 /* perform any initialisation required by the library here */
20 m = Py_InitModule("rtspserver", pygst_rtsp_server_functions);
21 d = PyModule_GetDict(m);
25 pygst_rtsp_server_register_classes(d);
27 /* add anything else to the module dictionary (such as constants) */
30 Py_FatalError("could not initialise module rtspserver");