aboutsummaryrefslogtreecommitdiffstats
path: root/timer_group.h
diff options
context:
space:
mode:
authormzuther <mzuther@3ae390bd-cb1e-0410-b409-cd5a39f66f1f>2010-11-28 16:07:16 +0000
committermzuther <mzuther@3ae390bd-cb1e-0410-b409-cd5a39f66f1f>2010-11-28 16:07:16 +0000
commit475fdb43971a24c01db6d8bf5cb4351eb6b76cfe (patch)
tree6a668a8f856c1ae9660f7f6b1846c52cb045ba68 /timer_group.h
parent00db296b07befe1b511af73b00303c536cea0c6c (diff)
downloadlcd4linux-475fdb43971a24c01db6d8bf5cb4351eb6b76cfe.tar.gz
commented, corrected and beautified both timer and timer group code
git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@1136 3ae390bd-cb1e-0410-b409-cd5a39f66f1f
Diffstat (limited to 'timer_group.h')
-rw-r--r--timer_group.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/timer_group.h b/timer_group.h
index 36d9057..ab9b835 100644
--- a/timer_group.h
+++ b/timer_group.h
@@ -29,12 +29,13 @@
#ifndef _TIMER_GROUP_H_
#define _TIMER_GROUP_H_
-int timer_add_group(void (*callback) (void *data), const int interval);
-int timer_remove_group(void (*callback) (void *data), const int interval);
+
void timer_process_group(void *data);
+
void timer_exit_group(void);
int timer_add_widget(void (*callback) (void *data), void *data, const int interval, const int one_shot);
+
int timer_remove_widget(void (*callback) (void *data), void *data);
#endif