diff options
author | Lukas Fleischer <lfleischer@calcurse.org> | 2016-01-12 18:40:40 +0100 |
---|---|---|
committer | Lukas Fleischer <lfleischer@calcurse.org> | 2016-01-13 17:39:44 +0100 |
commit | 3eae7ce82869dd2c313496913bb94438dd0177a9 (patch) | |
tree | b409a90240f11871e0f0fffab81dbfcbf206240f /src/calcurse.h | |
parent | c58087d5914322ab8f693729605a9508d67bb676 (diff) | |
download | calcurse-3eae7ce82869dd2c313496913bb94438dd0177a9.zip |
Add --list-imported command line option
When this option is used together with -i/--import, the object
identifiers of imported objects are printed to stdout.
Signed-off-by: Lukas Fleischer <lfleischer@calcurse.org>
Diffstat (limited to 'src/calcurse.h')
-rw-r--r-- | src/calcurse.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/calcurse.h b/src/calcurse.h index 7693d79..380384f 100644 --- a/src/calcurse.h +++ b/src/calcurse.h @@ -797,7 +797,7 @@ int display_help(const char *); int run_hook(const char *); /* ical.c */ -void ical_import_data(FILE *, FILE *, unsigned *, unsigned *, unsigned *, +void ical_import_data(FILE *, FILE *, int, unsigned *, unsigned *, unsigned *, unsigned *, unsigned *); void ical_export_data(FILE *); @@ -823,7 +823,7 @@ int io_check_file(const char *); int io_check_data_files(void); void io_startup_screen(int); void io_export_data(enum export_type); -void io_import_data(enum import_type, const char *); +void io_import_data(enum import_type, const char *, int); struct io_file *io_log_init(void); void io_log_print(struct io_file *, int, const char *); void io_log_display(struct io_file *, const char *, const char *); |