diff options
| author | Pietro Gagliardi <[email protected]> | 2014-03-02 23:28:43 -0500 |
|---|---|---|
| committer | Pietro Gagliardi <[email protected]> | 2014-03-02 23:28:43 -0500 |
| commit | 0baf0f4a974c2b968f83056c1b6df6a9ba21b1ae (patch) | |
| tree | 28dcd1f1826113755124af1229d47a2d33b7f1af /objc_darwin.h | |
| parent | bdce1b9dc2a997481cc2955e3f5a4641f415e766 (diff) | |
Fixed the compiler errors. The Mac OS X Listboxes are created!... but don't show any items. Let's figure out why.
Diffstat (limited to 'objc_darwin.h')
| -rw-r--r-- | objc_darwin.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/objc_darwin.h b/objc_darwin.h index db0ace5..a1ee381 100644 --- a/objc_darwin.h +++ b/objc_darwin.h @@ -47,6 +47,8 @@ struct xsize { extern struct xsize objc_msgSend_stret_size_noargs(id obj, SEL sel); +extern uintptr_t objc_msgSend_uintret_noargs(id objc, SEL sel); + extern intptr_t objc_msgSend_intret_noargs(id obj, SEL sel); #define m1(name, type1) \ @@ -85,12 +87,14 @@ extern id objc_msgSend_int(id obj, SEL sel, intptr_t a); 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); m3(id_id_id, id, id, id) m3(sel_id_bool, SEL, id, BOOL) extern id _objc_msgSend_rect_uint_uint_bool(id obj, SEL sel, int64_t x, int64_t y, int64_t w, int64_t h, uintptr_t b, uintptr_t c, BOOL d); m4(id_sel_id_id, id, SEL, id, id) +m4(id_id_id_id, id, id, id, id) /* for listbox_darwin.go */ extern uintptr_t *NSIndexSetEntries(id, uintptr_t); |
