]> Dogcows Code - chaz/openbox/blob - otk_c/rect.h
c32daa7a8d1d82b8744e7824de9e8493a629159e
[chaz/openbox] / otk_c / rect.h
1 // -*- mode: C; indent-tabs-mode: nil; -*-
2 #ifndef __rect_h
3 #define __rect_h
4
5 #include <Python.h>
6
7 typedef struct OtkRect {
8 PyObject_HEAD
9 int x, y, width, height;
10 } OtkRect;
11
12 PyObject *OtkRect_New(int x, int y, int width, int height);
13
14 #endif // __rect_h
This page took 0.033455 seconds and 4 git commands to generate.