⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 timerqueue.h

📁 RSA algorithm implementation is given
💻 H
字号:
#ifndef _TIMERQUEUE_H_#define _TIMERQUEUE_H_typedef void (*timer_hfunc_t) (void *);class timerQueue{	list<timer>		timerQ;	public:	int timer_add(u_int64_t timeVal, timer_hfunc_t func, void *dataVal);	int set_timer(u_int64_t timeout,timer_hfunc_t fun, void *data);	int set_timer_first(u_int64_t timeout,timer_hfunc_t fun, void *data);	int		scheduleTimer();	int		setRealTimer(u_int64_t timeout);	void	setLowestTimer(u_int64_t timeVal);	};#endif

⌨️ 快捷键说明

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