No more cleanup hooks. The OS can reclaim memory better than we can. We want to...
[citadel.git] / citadel / serv_extensions.h
index cd39831ca8ca08d563ad0bc5f32321058f4f789e..677f4f72bb456be00c31df67d85565797645eb06 100644 (file)
@@ -21,13 +21,6 @@ struct ServiceFunctionHook {
 };
 extern ServiceFunctionHook *ServiceHookTable;
 
-typedef struct CleanupFunctionHook CleanupFunctionHook;
-struct CleanupFunctionHook {
-       CleanupFunctionHook *next;
-       void (*h_function_pointer) (void);
-};
-extern CleanupFunctionHook *CleanupHookTable;
-
 void initialize_server_extensions(void);
 int DLoader_Exec_Cmd(char *cmdbuf);
 char *Dynamic_Module_Init(void);