diff options
| author | Pietro Gagliardi <[email protected]> | 2014-08-16 21:49:43 -0400 |
|---|---|---|
| committer | Pietro Gagliardi <[email protected]> | 2014-08-16 21:49:43 -0400 |
| commit | 5903dffe3c3f4572491c6575d431f066faa03caf (patch) | |
| tree | ecd8f87191bf297461eb2b0baac17135f8b6feac /redo/objc_darwin.h | |
| parent | 37069eadcbd8960ac46031b3455f78463a6bdf3f (diff) | |
Implemented ImageList and Table ImageIndex on Mac OS X.
Diffstat (limited to 'redo/objc_darwin.h')
| -rw-r--r-- | redo/objc_darwin.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/redo/objc_darwin.h b/redo/objc_darwin.h index 16a1a56..eef1501 100644 --- a/redo/objc_darwin.h +++ b/redo/objc_darwin.h @@ -83,8 +83,12 @@ extern void tabAppend(id, char *, id); extern struct xsize tabPreferredSize(id); /* table_darwin.m */ +enum { + colTypeText, + colTypeImage, +}; extern id newTable(void); -extern void tableAppendColumn(id, intptr_t, char *); +extern void tableAppendColumn(id, intptr_t, char *, int); extern void tableUpdate(id); extern void tableMakeDataSource(id, void *); extern struct xsize tablePreferredSize(id); @@ -118,4 +122,7 @@ extern void areaRepaintAll(id); /* common_darwin.m */ extern void disableAutocorrect(id); +/* imagerep_darwin.m */ +extern id toImageListImage(void *, intptr_t, intptr_t, intptr_t); + #endif |
