summaryrefslogtreecommitdiffstats
path: root/pymodule.h
blob: 242eecf0ece70807adc3d92777afe2f3deeec03f (plain)
1
2
3
4
5
6
7
8
9
10
11
#ifndef _PY_MODULE_H_
#define _PY_MODULE_H_

#include <Python.h>

/* This is global so that type objects and such can be easily attached */
extern PyObject *py_module;
int pymodule_init(void);
void pymodule_deinit(void);

#endif