TDAP: add facility to protect usetable entries from being deleted while still needed.
[citadel.git] / citadel / include / ctdl_module.h
index a96cdffe5bea402ac2693267a4e800350d2e1b3a..ab182b3627ce7f8ca74bc3883483f6fd490b069e 100644 (file)
 #define PRIO_UNSTEALTH 45000
 /* Priorities for EVT_STEALTH */
 #define PRIO_STEALTH 50000
+void CtdlRegisterTDAPVetoHook(int (*fcn_ptr)(StrBuf*), int EventType, int Priority);
+void CtdlUnregisterTDAPVetoHook(int (*fcn_ptr) (StrBuf*), int EventType);
+
+
 void CtdlRegisterSessionHook(void (*fcn_ptr)(void), int EventType, int Priority);
 void CtdlUnregisterSessionHook(void (*fcn_ptr)(void), int EventType);
 void CtdlShutdownServiceHooks(void);