diff options
| author | Pietro Gagliardi <[email protected]> | 2014-05-15 19:55:16 -0400 |
|---|---|---|
| committer | Pietro Gagliardi <[email protected]> | 2014-05-15 19:55:16 -0400 |
| commit | 9d8976ababebfd7ce670cdb05e3bc303ac466bf6 (patch) | |
| tree | f9ef14b706baab853c9067f25a4fc57174d0d7ad /objc_darwin.h | |
| parent | b73d4e9010a273fd4e3e0b809959387a3b020cb0 (diff) | |
Migrated everything else to Objective-C native; fixed a few things I missed along the way.
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); |
