Continue phase 2 of modules stuff.
[citadel.git] / citadel / server.h
index c455cff538c8f72f21b03baf53bb0add7296d0ce..11cd6319b8a982bc28c4b10159e16df7005d5b75 100644 (file)
@@ -451,6 +451,15 @@ struct RoomFunctionHook {
 extern struct RoomFunctionHook *RoomHookTable;
 
 
+struct MaintenanceThreadHook {
+       struct MaintenanceThreadHook *next;
+       char *name;
+       void *(*fcn_ptr) (void *arg);
+       pthread_t MaintenanceThread_tid;
+};
+extern struct MaintenanceThreadHook *MaintenanceThreadHookTable;
+
+
 
 /* Defines the relationship of a user to a particular room */
 struct visit {