]> icculus.org git repositories - mikachu/openbox.git/blob - openbox/clientwrap.h
dont need those includes no more
[mikachu/openbox.git] / 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