Continue phase 2 of modules stuff.
[citadel.git] / citadel / server.h
index 11cd6319b8a982bc28c4b10159e16df7005d5b75..927abb6e867ace165e62846b6ab8f6c253cd146d 100644 (file)
@@ -460,6 +460,13 @@ struct MaintenanceThreadHook {
 extern struct MaintenanceThreadHook *MaintenanceThreadHookTable;
 
 
+struct SearchFunctionHook {
+       struct SearchFunctionHook *next;
+       void (*fcn_ptr) (int *, long **, char *);
+       char *name;
+};
+extern struct SearchFunctionHook *SearchFunctionHookTable;
+
 
 /* Defines the relationship of a user to a particular room */
 struct visit {