diff options
Diffstat (limited to 'c/screenwrap.h')
| -rw-r--r-- | c/screenwrap.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/c/screenwrap.h b/c/screenwrap.h new file mode 100644 index 00000000..2ca278cf --- /dev/null +++ b/c/screenwrap.h @@ -0,0 +1,14 @@ +#ifndef __screenwrap_h +#define __screenwrap_h + +#include <Python.h> + +/* ScreenWrap is a PyObject */ +typedef struct ScreenWrap { + PyObject_HEAD +} ScreenWrap; + +void screenwrap_startup(); +void screenwrap_shutdown(); + +#endif |
