timer.h

来自「EPIC IRC客户端。来源于IRCII客户端但做了很多性能和功能的优化。」· C头文件 代码 · 共 23 行

H
23
字号
/* * timer.h: header for timer.c  * * Copyright 1997 EPIC Software Labs * See the COPYRIGHT file, or do a HELP IRCII COPYRIGHT  */#ifndef __timer_h__#define __timer_h__	BUILT_IN_COMMAND(timercmd);	void	ExecuteTimers 	(void);	char *	add_timer	(int, const char *, double, long, 				 int (*) (void *), void *, 				 const char *, int);	int	timer_exists	(const char *ref);	int     remove_timer	(const char *ref);	Timeval	TimerTimeout 	(void);	char *	timerctl	(char *);#endif /* _TIMER_H_ */

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?