summaryrefslogtreecommitdiff
path: root/otk_c/rect.h
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2003-01-17 06:40:00 +0000
committerDana Jansens <danakj@orodu.net>2003-01-17 06:40:00 +0000
commit6188650ce975e287c7c8644927cd5d01e7cc7baa (patch)
tree6396de81dbb9ef56f39c24a062b93e4c896a5773 /otk_c/rect.h
parent58ff3f35c2b712ec92b093ffd8b96331615f546a (diff)
rm my lucid experiment
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