diff options
| author | Pietro Gagliardi <[email protected]> | 2014-03-02 23:11:29 -0500 |
|---|---|---|
| committer | Pietro Gagliardi <[email protected]> | 2014-03-02 23:11:29 -0500 |
| commit | bdce1b9dc2a997481cc2955e3f5a4641f415e766 (patch) | |
| tree | 5a84744eefac299a167f9d314a8007023b9cecff /objc_darwin.h | |
| parent | 77c0198751b3c72804918070942123d1b4a5c4f1 (diff) | |
Added untested Mac OS X Listbox code. Won't compile yet...
Diffstat (limited to 'objc_darwin.h')
| -rw-r--r-- | objc_darwin.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/objc_darwin.h b/objc_darwin.h index 4788315..db0ace5 100644 --- a/objc_darwin.h +++ b/objc_darwin.h @@ -23,6 +23,9 @@ The format should be self-explanatory. /* for delegate_darwin.go */ extern Class NilClass; +/* for listbox_darwin.go */ +extern id *_NSObservedObjectKey; + inline id objc_msgSend_noargs(id obj, SEL sel) { return objc_msgSend(obj, sel); @@ -89,4 +92,7 @@ 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) +/* for listbox_darwin.go */ +extern uintptr_t *NSIndexSetEntries(id, uintptr_t); + #endif |
