From d1c876e03ce1df47dab9c77fa5c5b7192670267d Mon Sep 17 00:00:00 2001 From: Chris Young Date: Sun, 3 Aug 2008 16:10:10 +0000 Subject: Fully implemented schedule, schedule_run and schedule_remove. svn path=/trunk/netsurf/; revision=4875 --- amiga/schedule.h | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100755 amiga/schedule.h (limited to 'amiga/schedule.h') diff --git a/amiga/schedule.h b/amiga/schedule.h new file mode 100755 index 000000000..5b8574b16 --- /dev/null +++ b/amiga/schedule.h @@ -0,0 +1,31 @@ +/* + * Copyright 2008 Chris Young + * + * This file is part of NetSurf, http://www.netsurf-browser.org/ + * + * NetSurf 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; version 2 of the License. + * + * NetSurf 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, see . + */ + +#ifndef AMIGA_SCHEDULE_H +#define AMIGA_SCHEDULE_H +#include + +struct MinList *schedule_list; + +struct nscallback +{ + struct timeval tv; + void *callback; + void *p; +}; +#endif -- cgit v1.2.3