diff options
Diffstat (limited to 'objc_darwin.h')
| -rw-r--r-- | objc_darwin.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/objc_darwin.h b/objc_darwin.h index c1f0873..a616242 100644 --- a/objc_darwin.h +++ b/objc_darwin.h @@ -20,6 +20,18 @@ The format should be self-explanatory. #include <stdint.h> +struct xrect; // TODO move that up here when finally getting rid of bleh_darwin.m + +extern id toNSString(char *); +extern char *fromNSString(id); +extern void display(id); +extern struct xrect frame(id); +extern id makeScrollView(id); +extern void giveScrollViewBezelBorder(id); +extern id scrollViewContent(id); + +// BEGIN OLD CODE + static inline id objc_msgSend_noargs(id obj, SEL sel) { return objc_msgSend(obj, sel); |
