diff options
author | Frederic Culot <calcurse@culot.org> | 2006-09-15 15:46:09 +0000 |
---|---|---|
committer | Frederic Culot <calcurse@culot.org> | 2006-09-15 15:46:09 +0000 |
commit | 059c5820ca42fe3a9af958f99f1134ff0580cd2b (patch) | |
tree | 782620813e64c9fc2ce06df687d00c6c99fdc9cf | |
parent | f30430f6c5f58517fb672f294189af1d749857c9 (diff) | |
download | calcurse-059c5820ca42fe3a9af958f99f1134ff0580cd2b.zip |
notify_start_main_thread() and notify_stop_main_thread() added
-rwxr-xr-x | src/notify.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/notify.h b/src/notify.h index 40f898a..68e1696 100755 --- a/src/notify.h +++ b/src/notify.h @@ -1,4 +1,4 @@ -/* $calcurse: notify.h,v 1.3 2006/09/14 14:59:32 culot Exp $ */ +/* $calcurse: notify.h,v 1.4 2006/09/15 15:46:09 culot Exp $ */ /* * Calcurse - text-based organizer @@ -51,11 +51,14 @@ struct notify_app_s { pthread_mutex_t mutex; }; +int notify_bar(void); void notify_init_bar(int l, int c, int y, int x); +void notify_start_main_thread(void); +void notify_stop_main_thread(void); void notify_reinit_bar(int l, int c, int y, int x); void notify_update_bar(void); void notify_extract_aptsfile(void); -void *notify_thread_time(void *arg); +void *notify_main_thread(void *arg); void notify_check_next_app(void); void *notify_thread_app(void *time); void notify_check_added(char *mesg, long start); |