summaryrefslogtreecommitdiff
path: root/otk_c/rect.h
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2002-12-20 23:26:51 +0000
committerDana Jansens <danakj@orodu.net>2002-12-20 23:26:51 +0000
commit8d3d9ae75c3b023288af18492713b00ca8244fe1 (patch)
treecc95aa85896b355bedf987da2e9ffe562e9ddd42 /otk_c/rect.h
parente5c5b4bf700f9bf00dd88bd4b6a471ac1ccefaff (diff)
add rect
Diffstat (limited to 'otk_c/rect.h')
-rw-r--r--otk_c/rect.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/otk_c/rect.h b/otk_c/rect.h
index 4d08828c..50547b57 100644
--- a/otk_c/rect.h
+++ b/otk_c/rect.h
@@ -1,5 +1,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