merge the C branch into HEAD
[mikachu/openbox.git] / c / screenwrap.h
1 #ifndef __screenwrap_h
2 #define __screenwrap_h
3
4 #include <Python.h>
5
6 /* ScreenWrap is a PyObject */
7 typedef struct ScreenWrap {
8     PyObject_HEAD
9 } ScreenWrap;
10
11 void screenwrap_startup();
12 void screenwrap_shutdown();
13
14 #endif