diff options
author | Frederic Culot <calcurse@culot.org> | 2008-12-28 13:13:58 +0000 |
---|---|---|
committer | Frederic Culot <calcurse@culot.org> | 2008-12-28 13:13:58 +0000 |
commit | 5352496984d550bd441b12a082d5a382c168cbe2 (patch) | |
tree | 8a61b0785ba0d2f9edde566bef372360244949e3 /src/notify.h | |
parent | a63c74892085e6bd5ea8b88712f44d1567ce7ed3 (diff) | |
download | calcurse-5352496984d550bd441b12a082d5a382c168cbe2.zip |
Added wrappers around libc's memory management functions, to easily debug memory usage
Diffstat (limited to 'src/notify.h')
-rwxr-xr-x | src/notify.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/notify.h b/src/notify.h index e1b8f00..957ec36 100755 --- a/src/notify.h +++ b/src/notify.h @@ -1,4 +1,4 @@ -/* $calcurse: notify.h,v 1.14 2008/04/19 21:05:15 culot Exp $ */ +/* $calcurse: notify.h,v 1.15 2008/12/28 13:13:59 culot Exp $ */ /* * Calcurse - text-based organizer @@ -54,7 +54,9 @@ struct notify_app_s int notify_bar (void); void notify_init_vars (void); +void notify_free_vars (void); void notify_init_bar (void); +void notify_free_bar (void); void notify_start_main_thread (void); void notify_stop_main_thread (void); void notify_reinit_bar (void); |