openbox/otk_c/rect.h

15 lines
263 B
C
Raw Normal View History

2002-12-20 23:26:51 +00:00
// -*- mode: C; indent-tabs-mode: nil; -*-
#ifndef __rect_h
#define __rect_h
#include <Python.h>
typedef struct OtkRect {
PyObject_HEAD
2002-12-20 23:19:07 +00:00
int x, y, width, height;
} OtkRect;
PyObject *OtkRect_New(int x, int y, int width, int height);
2002-12-20 23:26:51 +00:00
#endif // __rect_h