summaryrefslogtreecommitdiff
path: root/otk_c/rect.h
blob: 4d08828cb35514f9c388b72f243ea015fc9c623e (plain)
1
2
3
4
5
typedef struct {
  int x, y, width, height;
} OtkRect;

PyObject *OtkRect_New(int x, int y, int width, int height);