diff options
| author | Pietro Gagliardi <[email protected]> | 2014-04-13 20:16:05 -0400 |
|---|---|---|
| committer | Pietro Gagliardi <[email protected]> | 2014-04-13 20:16:05 -0400 |
| commit | 3bb9f4130576bb4f356b3e49fc73bc7d456d716d (patch) | |
| tree | a33b9e523b2f560446b7bcc7f3d58ef6b43c29cd /objc_darwin.h | |
| parent | fb50badf00db0ba2da8a99aa75b489c620f8a971 (diff) | |
Fixed Mac OS X so that window sizes do not include the titlebar and frame.
Diffstat (limited to 'objc_darwin.h')
| -rw-r--r-- | objc_darwin.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/objc_darwin.h b/objc_darwin.h index fbe169c..aaca07e 100644 --- a/objc_darwin.h +++ b/objc_darwin.h @@ -88,13 +88,14 @@ m1(ptr, void *) m1(bool, BOOL) extern id objc_msgSend_int(id obj, SEL sel, intptr_t a); m1(double, double) +extern id objc_msgSend_point(id obj, SEL sel, int64_t x, int64_t y); +extern id objc_msgSend_size(id objc, SEL sel, int64_t width, int64_t height); m2(id_id, id, id) extern id objc_msgSend_rect_bool(id obj, SEL sel, int64_t x, int64_t y, int64_t w, int64_t h, BOOL b); extern id objc_msgSend_id_int(id obj, SEL sel, id a, intptr_t b); extern id objc_msgSend_id_uint(id obj, SEL sel, id a, uintptr_t b); m2(id_bool, id, BOOL) -extern id objc_msgSend_point(id obj, SEL sel, int64_t x, int64_t y); m3(id_id_id, id, id, id) m3(sel_id_bool, SEL, id, BOOL) |
