diff options
| author | Pietro Gagliardi <[email protected]> | 2014-10-30 14:35:31 -0400 |
|---|---|---|
| committer | Pietro Gagliardi <[email protected]> | 2014-10-30 14:35:31 -0400 |
| commit | 4a98fdb907baad49957cf8a719a2bd2d2f223dcf (patch) | |
| tree | 7c7ad33395a2a0845f03a02819bff73e198c88d3 /objc_darwin.h | |
| parent | 3c73f10cc1518e75206af907eacac85bd847d271 (diff) | |
Implemented the previous commit's stuff on Mac OS X.
Diffstat (limited to 'objc_darwin.h')
| -rw-r--r-- | objc_darwin.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/objc_darwin.h b/objc_darwin.h index 083c013..596a83c 100644 --- a/objc_darwin.h +++ b/objc_darwin.h @@ -152,8 +152,10 @@ extern id newWarningPopover(char *); extern void warningPopoverShow(id, id); /* spinbox_darwin.m */ -extern id newSpinbox(void *); +extern id newSpinbox(void *, intmax_t, intmax_t); extern id spinboxTextField(id); extern id spinboxStepper(id); +extern intmax_t spinboxValue(id); +extern void spinboxSetValue(id, intmax_t); #endif |
