openbox/otk_c/rect.h
Dana Jansens 8d3d9ae75c add rect
2002-12-20 23:26:51 +00:00

13 lines
239 B
C

// -*- 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