]> code.citadel.org Git - citadel.git/blobdiff - citadel/server.h
Patches from Matt with slight mod from me to do without strlen. Also modified lprintf...
[citadel.git] / citadel / server.h
index 11cd6319b8a982bc28c4b10159e16df7005d5b75..3d1c9c487a721d151a8dd3769c528f2eb4dc36c4 100644 (file)
@@ -237,6 +237,7 @@ enum {
        S_RPLIST,
        S_SIEVELIST,
        S_CHKPWD,
+       S_LOG,
        MAX_SEMAPHORES
 };
 
@@ -460,6 +461,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 {