00001 /****************************************************************************/ 00002 /****************************************************************************/ 00007 /****************************************************************************/ 00008 00009 #include "plugin.h" 00010 #include "packet.h" 00011 00012 #ifndef OUTPLUG_H 00013 #define OUTPLUG_H 00014 00015 int pluginRegister(INPLUG **, ANPLUG **, PROTOPLUG **, OUTPLUG **, 00016 int(*DecodeCallback)(PACKET*,PROTO)); 00017 int pluginInit(int ct, char **inits); 00018 int pluginCleanup(int reason); 00019 00020 int pluginOutput(PACKET *, char *args); 00021 00022 #endif /* OUTPLUG_H */ 00023