]> Dogcows Code - chaz/openbox/blob - python_client.hh
32b0c45bc28c144aac4427a72661f14bc1624fef
[chaz/openbox] / python_client.hh
1 // -*- mode: C++; indent-tabs-mode: nil; c-basic-offset: 2; -*-
2 #ifndef __pythonclient_hh
3 #define __pythonclient_hh
4
5 /*! @file python_client.hh
6 @brief Python stuff
7 */
8
9 #include "python.hh"
10 #include "client.hh"
11
12 namespace ob {
13
14 extern "C" {
15
16 typedef struct {
17 PyObject_HEAD
18 Window window;
19 OBClient *client;
20 } PyClientObject;
21
22 extern PyTypeObject PyClient_Type;
23
24 PyObject *get_client_dict(PyObject* self, PyObject* args);
25
26 }
27 }
28
29 #endif // __pythonclient_hh
This page took 0.034445 seconds and 3 git commands to generate.