summaryrefslogtreecommitdiff
path: root/otk_c/rect.h
diff options
context:
space:
mode:
Diffstat (limited to 'otk_c/rect.h')
-rw-r--r--otk_c/rect.h16
1 files changed, 0 insertions, 16 deletions
diff --git a/otk_c/rect.h b/otk_c/rect.h
deleted file mode 100644
index 07a85f9e..00000000
--- a/otk_c/rect.h
+++ /dev/null
@@ -1,16 +0,0 @@
-// -*- mode: C; indent-tabs-mode: nil; c-basic-offset: 2; -*-
-#ifndef __rect_h
-#define __rect_h
-
-#include <Python.h>
-
-extern PyTypeObject OtkRect_Type;
-
-typedef struct OtkRect {
- PyObject_HEAD
- int x, y, width, height;
-} OtkRect;
-
-PyObject *OtkRect_New(int x, int y, int width, int height);
-
-#endif // __rect_h