summaryrefslogtreecommitdiff
path: root/otk_c/rect.h
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2002-12-20 23:19:07 +0000
committerDana Jansens <danakj@orodu.net>2002-12-20 23:19:07 +0000
commite5c5b4bf700f9bf00dd88bd4b6a471ac1ccefaff (patch)
tree122c249b6bd50a6695f829e1b559cc8e648f4802 /otk_c/rect.h
parent7f111a94d0a0d8a45d318b8a19d0da1097c76d24 (diff)
add screeninfo
Diffstat (limited to 'otk_c/rect.h')
-rw-r--r--otk_c/rect.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/otk_c/rect.h b/otk_c/rect.h
new file mode 100644
index 00000000..4d08828c
--- /dev/null
+++ b/otk_c/rect.h
@@ -0,0 +1,5 @@
+typedef struct {
+ int x, y, width, height;
+} OtkRect;
+
+PyObject *OtkRect_New(int x, int y, int width, int height);