X-Git-Url: https://code.citadel.org/?a=blobdiff_plain;f=citadel%2Fserver.h;h=11cd6319b8a982bc28c4b10159e16df7005d5b75;hb=079f33bf491a2718e54829da13804d266f935204;hp=c455cff538c8f72f21b03baf53bb0add7296d0ce;hpb=6811477765e483adae130a5d2b39f12968e3500a;p=citadel.git diff --git a/citadel/server.h b/citadel/server.h index c455cff53..11cd6319b 100644 --- a/citadel/server.h +++ b/citadel/server.h @@ -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 {