]> Dogcows Code - chaz/openbox/blob - openboxwrap.h
8e54f2d5b6951bdea2a7053cb189b4d8207b44a7
[chaz/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.032254 seconds and 3 git commands to generate.