summaryrefslogtreecommitdiff
path: root/objc_darwin.h
diff options
context:
space:
mode:
Diffstat (limited to 'objc_darwin.h')
-rw-r--r--objc_darwin.h6
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