diff options
| author | Pietro Gagliardi <[email protected]> | 2014-06-26 00:23:29 -0400 |
|---|---|---|
| committer | Pietro Gagliardi <[email protected]> | 2014-06-26 00:23:29 -0400 |
| commit | 5e17d64b091036396aee8faa887f2f135188d3ac (patch) | |
| tree | 4e1ae907154041654c8821804cdc03a1f3b9e145 /objc_darwin.h | |
| parent | 4a68c3cb7a984d144378c683e7587dadd5ebe62f (diff) | |
Undid the whole yoff spiel on Mac OS X. NOW I'll merge the new sizing system into that backend.
Diffstat (limited to 'objc_darwin.h')
| -rw-r--r-- | objc_darwin.h | 15 |
1 files changed, 4 insertions, 11 deletions
diff --git a/objc_darwin.h b/objc_darwin.h index f9f0822..03dafdf 100644 --- a/objc_darwin.h +++ b/objc_darwin.h @@ -33,12 +33,6 @@ struct xpoint { intptr_t y; }; -struct xprefsize { - intptr_t width; - intptr_t height; - intptr_t yoff; -}; - /* objc_darwin.m */ extern id toNSString(char *); extern char *fromNSString(id); @@ -92,11 +86,10 @@ extern uintptr_t listboxIndexesNext(id, uintptr_t); extern intptr_t listboxLen(id); /* prefsize_darwin.m */ -extern struct xprefsize controlPrefSize(id, BOOL); -extern struct xprefsize labelPrefSize(id, BOOL); -extern struct xprefsize listboxPrefSize(id, BOOL); -extern struct xprefsize pbarPrefSize(id, BOOL); -extern struct xprefsize areaPrefSize(id, BOOL); +extern struct xsize controlPrefSize(id); +extern struct xsize listboxPrefSize(id); +extern struct xsize pbarPrefSize(id); +extern struct xsize areaPrefSize(id); /* sysdata_darwin.m */ extern void addControl(id, id); |
