fixed botwar detection for bot deops
[NeonServV5.git] / src / timeq.h
index 7e10633b14be4539338d4a4422ffd20451a59d1f..4e943b7de8003ae4d38616e6e291cb7a71889ed5 100644 (file)
@@ -24,16 +24,19 @@ typedef TIMEQ_CALLBACK(timeq_callback_t);
 
 struct timeq_entry {
     char *name;
-    time_t execute;
+    struct timeval execute;
     timeq_callback_t *callback;
     void *data;
     
     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_uadd(int useconds, timeq_callback_t *callback, void *data);
 struct timeq_entry* timeq_add_name(char *name, int seconds, timeq_callback_t *callback, void *data);
+struct timeq_entry* timeq_uadd_name(char *name, int useconds, timeq_callback_t *callback, void *data);
 int timeq_del(struct timeq_entry* entry);
 int timeq_del_name(char *name);
 int timeq_name_exists(char *name);