summaryrefslogtreecommitdiff
path: root/otk_c/rect.h
blob: 50547b574518ab13b65b4a5ba411a7b6f7a4ffa3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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