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 /objc_darwin.go | |
| parent | 21ec25dd1aa897263108bcf8c8a4407084cecf4f (diff) | |
Added initial Mac OS X sysData code. Almost ready for first test build, hopefully?
Diffstat (limited to 'objc_darwin.go')
| -rw-r--r-- | objc_darwin.go | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/objc_darwin.go b/objc_darwin.go index 234f7c0..6d9ce8e 100644 --- a/objc_darwin.go +++ b/objc_darwin.go @@ -82,6 +82,12 @@ func objc_msgSend_uint(obj C.id, sel C.SEL, a uintptr) C.id { return C._objc_msgSend_uint(obj, sel, C.uintptr_t(a)) } +func objc_msgSend_rect_bool(obj C.id, sel C.SEL, x int, y int, w int, h int, b C.BOOL) C.id { + return C._objc_msgSend_rect_bool(obj, sel, + C.int64_t(x), C.int64_t(y), C.int64_t(w), C.int64_t(h), + b) +} + func objc_msgSend_rect_uint_uint_bool(obj C.id, sel C.SEL, x int, y int, w int, h int, b uintptr, c uintptr, d C.BOOL) C.id { return C._objc_msgSend_rect_uint_uint_bool(obj, sel, C.int64_t(x), C.int64_t(y), C.int64_t(w), C.int64_t(h), |
