]> Dogcows Code - chaz/openbox/blob - openbox/openboxwrap.h
merge the C branch into HEAD
[chaz/openbox] / openbox / openboxwrap.h
1 #ifndef __openboxwrap_h
2 #define __openboxwrap_h
3
4 #include <Python.h>
5
6 /* OpenboxWrap is a PyObject */
7 typedef struct OpenboxWrap {
8 PyObject_HEAD
9 PyObject *client_list;
10 } OpenboxWrap;
11
12 OpenboxWrap *openboxwrap_obj;
13
14 void openboxwrap_startup();
15 void openboxwrap_shutdown();
16
17 #endif
This page took 0.032826 seconds and 4 git commands to generate.