diff options
| author | Pietro Gagliardi <[email protected]> | 2014-03-01 13:29:24 -0500 |
|---|---|---|
| committer | Pietro Gagliardi <[email protected]> | 2014-03-01 13:29:24 -0500 |
| commit | a83dcb028242cb57f143a60a869cd64390809be3 (patch) | |
| tree | 582c5cc07e8235ce672c75614c53a7ddc7c7150e /bleh_darwin.m | |
| parent | 21ec25dd1aa897263108bcf8c8a4407084cecf4f (diff) | |
Added initial Mac OS X sysData code. Almost ready for first test build, hopefully?
Diffstat (limited to 'bleh_darwin.m')
| -rw-r--r-- | bleh_darwin.m | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/bleh_darwin.m b/bleh_darwin.m index 7b10134..5e4b277 100644 --- a/bleh_darwin.m +++ b/bleh_darwin.m @@ -40,6 +40,11 @@ id _objc_msgSend_rect(id obj, SEL sel, int64_t x, int64_t y, int64_t w, int64_t return objc_msgSend(obj, sel, OurRect()); } +id _objc_msgSend_rect_bool(id obj, SEL sel, int64_t x, int64_t y, int64_t w, int64_t h, BOOL b) +{ + return objc_msgSend(obj, sel, OurRect(), b); +} + 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) { return objc_msgSend(obj, sel, OurRect(), (NSUInteger) b, (NSUInteger) c, d); |
