summaryrefslogtreecommitdiff
path: root/amiga/schedule.c
diff options
context:
space:
mode:
Diffstat (limited to 'amiga/schedule.c')
-rwxr-xr-xamiga/schedule.c32
1 files changed, 32 insertions, 0 deletions
diff --git a/amiga/schedule.c b/amiga/schedule.c
new file mode 100755
index 000000000..8d99a8271
--- /dev/null
+++ b/amiga/schedule.c
@@ -0,0 +1,32 @@
+/*
+ * Copyright 2008 Chris Young <chris@unsatisfactorysoftware.co.uk>
+ *
+ * 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 <http://www.gnu.org/licenses/>.
+ */
+
+#include "desktop/browser.h"
+
+void schedule(int t, void (*callback)(void *p), void *p)
+{
+ printf("adding callback %lx\n",callback);
+}
+
+void schedule_remove(void (*callback)(void *p), void *p)
+{
+}
+
+void schedule_run(void)
+{
+}