00001 /*---------------------------------------------------------------------------- 00002 secwatch - Copyright (C) 2006 Nic Stevens -- See COPYING for license details 00003 ------------------------------------------------------------------------------ 00004 hooks.h - Prototypes for the hook functions 00005 -----------------------------------------------------------------------------*/ 00006 #ifndef _HOOKS_H 00007 #define _HOOKS_H 00008 #include <funprotos.h> 00009 00010 int addLogHook(hookfn_t hf); 00011 void processLogHooks(char *buf); 00012 int addLoopHook(loopfn_t hf); 00013 void processLoopHooks(char *buf); 00014 00015 #endif
1.4.6