added experimental multi thread support
[NeonServV5.git] / src / timeq.h
index 1c3b3e9080855348497e2e81e9c492b25bc26bb6..762df29a2faf2aeaa7d3e7749a6cad9b614b6b3b 100644 (file)
@@ -1,5 +1,5 @@
 /* timeq.h - NeonServ v5.3
- * Copyright (C) 2011  Philipp Kreil (pk910)
+ * Copyright (C) 2011-2012  Philipp Kreil (pk910)
  * 
  * 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
@@ -31,6 +31,7 @@ struct timeq_entry {
     struct timeq_entry *next;
 };
 
+void init_timeq();
 void timeq_tick();
 struct timeq_entry* timeq_add(int seconds, timeq_callback_t *callback, void *data);
 struct timeq_entry* timeq_add_name(char *name, int seconds, timeq_callback_t *callback, void *data);