diff options
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 |
