X-Git-Url: https://code.citadel.org/?a=blobdiff_plain;f=citadel%2Fserver.h;h=927abb6e867ace165e62846b6ab8f6c253cd146d;hb=13f214043d3697db7a3ca1c751cee41fd2fcf695;hp=11cd6319b8a982bc28c4b10159e16df7005d5b75;hpb=7b446ded2584f08fe51fe9327a3769acc6937c85;p=citadel.git diff --git a/citadel/server.h b/citadel/server.h index 11cd6319b..927abb6e8 100644 --- a/citadel/server.h +++ b/citadel/server.h @@ -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 {