]> Dogcows Code - chaz/openbox/blob - openbox/clientwrap.h
merge the C branch into HEAD
[chaz/openbox] / openbox / clientwrap.h
1 #ifndef __clientwrap_h
2 #define __clientwrap_h
3
4 #include <Python.h>
5
6 struct Client;
7
8 /* ClientWrap is a PyObject */
9 typedef struct ClientWrap {
10 PyObject_HEAD
11 struct Client *client;
12 } ClientWrap;
13
14 void clientwrap_startup();
15 void clientwrap_shutdown();
16
17 PyObject *clientwrap_new(struct Client *client);
18
19 #endif
This page took 0.032757 seconds and 4 git commands to generate.