From: Robert K. <may...@us...> - 2001-06-18 07:27:20
|
Update of /cvsroot/bitcollider/bitcollider/include In directory usw-pr-cvs1:/tmp/cvs-serv692/include Modified Files: plugin.h Log Message: Trying to get rid of more warnings... Index: plugin.h =================================================================== RCS file: /cvsroot/bitcollider/bitcollider/include/plugin.h,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -r1.6 -r1.7 *** plugin.h 2001/06/18 07:08:23 1.6 --- plugin.h 2001/06/18 07:27:17 1.7 *************** *** 26,30 **** } Attribute; ! typedef void *Context; typedef struct _PluginMethods --- 26,30 ---- } Attribute; ! typedef void Context; typedef struct _PluginMethods *************** *** 39,46 **** Context *(*mem_analyze_init) (void); ! void (*mem_analyze_update) (Context context, ! const unsigned char *, ! unsigned bufLen); ! Attribute *(*mem_analyze_final) (Context context); void (*free_attributes) (Attribute *attrList); --- 39,46 ---- Context *(*mem_analyze_init) (void); ! void (*mem_analyze_update) (Context *context, ! const unsigned char *buf, ! unsigned bufLen); ! Attribute *(*mem_analyze_final) (Context *context); void (*free_attributes) (Attribute *attrList); |