diff options
Diffstat (limited to 'otk_c/rect.h')
| -rw-r--r-- | otk_c/rect.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/otk_c/rect.h b/otk_c/rect.h index 4d08828c..50547b57 100644 --- a/otk_c/rect.h +++ b/otk_c/rect.h @@ -1,5 +1,13 @@ +// -*- mode: C; indent-tabs-mode: nil; -*- +#ifndef __rect_h +#define __rect_h + +#include <Python.h> + typedef struct { int x, y, width, height; } OtkRect; PyObject *OtkRect_New(int x, int y, int width, int height); + +#endif // __rect_h |
