2002-12-20 23:26:51 +00:00
|
|
|
// -*- mode: C; indent-tabs-mode: nil; -*-
|
|
|
|
#ifndef __rect_h
|
|
|
|
#define __rect_h
|
|
|
|
|
|
|
|
#include <Python.h>
|
|
|
|
|
2002-12-20 23:19:07 +00:00
|
|
|
typedef struct {
|
|
|
|
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
|