diff options
author | Frederic Culot <calcurse@culot.org> | 2007-03-10 15:54:24 +0000 |
---|---|---|
committer | Frederic Culot <calcurse@culot.org> | 2007-03-10 15:54:24 +0000 |
commit | f82590c811bcff3f760063859d855865ec083a49 (patch) | |
tree | 832f413d9b32894ec68e01ef2b585b0a2d4e67e3 /src/io.h | |
parent | b1d02bf4ff30bc33645ae5f436afcbec6640efda (diff) | |
download | calcurse-f82590c811bcff3f760063859d855865ec083a49.tar.gz calcurse-f82590c811bcff3f760063859d855865ec083a49.zip |
global variable 'colr' suppressed
Diffstat (limited to 'src/io.h')
-rwxr-xr-x | src/io.h | 19 |
1 files changed, 9 insertions, 10 deletions
@@ -1,8 +1,8 @@ -/* $calcurse: io.h,v 1.1 2006/07/31 21:00:03 culot Exp $ */ +/* $calcurse: io.h,v 1.2 2007/03/10 15:56:56 culot Exp $ */ /* * Calcurse - text-based organizer - * Copyright (c) 2004-2006 Frederic Culot + * Copyright (c) 2004-2007 Frederic Culot * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -29,14 +29,13 @@ void io_init(char *cfile); void extract_data(char *dst_data, const char *org, int len); -void save_cal(bool auto_save, bool confirm_quit, - bool confirm_delete, bool skip_system_dialogs, - bool skip_progress_bar, bool week_begins_on_monday, - int colr, int layout); -void load_app(); -int load_todo(int colr); -int check_data_files(); -void startup_screen(bool skip_dialogs, int no_data_file, int colr); +void save_cal(bool auto_save, bool confirm_quit, bool confirm_delete, + bool skip_system_dialogs, bool skip_progress_bar, + bool week_begins_on_monday, int layout); +void load_app(void); +int load_todo(void); +int check_data_files(void); +void startup_screen(bool skip_dialogs, int no_data_file); void progress_bar(bool save, int progress); #endif /* CALCURSE_IO_H */ |