File: timers.h

package info (click to toggle)
bb 1.3rc1-6
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 3,504 kB
  • ctags: 1,330
  • sloc: ansic: 32,502; sh: 2,900; makefile: 62
file content (64 lines) | stat: -rw-r--r-- 2,306 bytes parent folder | download | duplicates (10)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
/* 
 *     XaoS, a fast portable realtime fractal zoomer 
 *                  Copyright (C) 1996,1997 by
 *
 *      Jan Hubicka          (hubicka@paru.cas.cz)
 *      Thomas Marsh         (tmarsh@austin.ibm.com)
 *
 * 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
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 */

#ifndef TIMERS_H
#define TIMERS_H
#include "config.h"
#ifdef __cplusplus
extern "C" {
#endif

struct timer;
struct timeemulator;
typedef struct timer tl_timer;
typedef struct timer tl_group;

void tl_update_time (void);
tl_timer *tl_create_timer (void);
tl_group *tl_create_group (void);
void tl_set_interval (tl_timer * timer, int interval);
void tl_set_handler (tl_timer * timer, void (*handler) (void *), void *userdata);
void tl_set_multihandler (tl_timer * timer, void (*handler) (void *, int), void *userdata);
void tl_add_timer (tl_group * group, tl_timer * timer);
void tl_remove_timer (tl_timer * timer);
void tl_free_timer (tl_timer * timer);
void tl_free_group (tl_group * timer);
void tl_stop_timer (tl_timer * t);
void tl_resume_timer (tl_timer * t);
void tl_slowdown_timer (tl_timer * t, int time);
int tl_process_group (tl_group * group, int *activated);
extern tl_group *syncgroup, *asyncgroup;
void tl_sleep (int);
void tl_allegromode (int mode);	/*Just for djgpp */
int tl_lookup_timer (tl_timer * t) REGISTERS (3);
void tl_reset_timer (tl_timer * t) REGISTERS (3);

struct timeemulator *tl_create_emulator(void);
void tl_free_emulator(struct timeemulator *t);
void tl_elpased(struct timeemulator *t, int elpased);
void tl_emulate_timer(struct timer *t, struct timeemulator *e);
void tl_unemulate_timer(struct timer *t);

#ifdef __cplusplus
}
#endif
#endif /* TIMER_H */