From 00243442d2ed438e1e581b00aae369a2eb9836d9 Mon Sep 17 00:00:00 2001 From: Pietro Gagliardi Date: Sat, 1 Mar 2014 13:58:38 -0500 Subject: Fixed Mac OS X sysData.setWindowSize() to get the window origin. Now to fix the rest of the errors... --- objc_darwin.h | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'objc_darwin.h') diff --git a/objc_darwin.h b/objc_darwin.h index e73687e..173f238 100644 --- a/objc_darwin.h +++ b/objc_darwin.h @@ -21,6 +21,15 @@ inline id objc_msgSend_noargs(id obj, SEL sel) return objc_msgSend(obj, sel); } +struct xrect { + int64_t x; + int64_t y; + int64_t width; + int64_t height; +}; + +extern struct xrect objc_msgSend_stret_rect_noargs(id obj, SEL sel); + struct xsize { int64_t width; int64_t height; -- cgit v1.2.3