]> icculus.org git repositories - mikachu/openbox.git/blob - otk_c/rect.h
start on otk::ustring (unicode/utf8)
[mikachu/openbox.git] / otk_c / rect.h
1 // -*- mode: C; indent-tabs-mode: nil; c-basic-offset: 2; -*-
2 #ifndef   __rect_h
3 #define   __rect_h
4
5 #include <Python.h>
6
7 extern PyTypeObject OtkRect_Type;
8
9 typedef struct OtkRect {
10   PyObject_HEAD
11   int x, y, width, height;
12 } OtkRect;
13
14 PyObject *OtkRect_New(int x, int y, int width, int height);
15
16 #endif // __rect_h