Fix some declarations to match the signatures of "tvb_find_guint8()" and

"tvb_pbrk_guint8()".

svn path=/trunk/; revision=4121
This commit is contained in:
Guy Harris 2001-11-01 09:53:13 +00:00
parent a81c03816c
commit f9ff2a9ab3
2 changed files with 6 additions and 6 deletions

View File

@ -1,7 +1,7 @@
/* plugin_api_defs.h
* Define the variables that hold pointers to plugin API functions
*
* $Id: plugin_api_defs.h,v 1.1 2001/10/31 10:40:54 guy Exp $
* $Id: plugin_api_defs.h,v 1.2 2001/11/01 09:53:13 guy Exp $
*
* Ethereal - Network traffic analyzer
* Copyright 2000 by Gilbert Ramirez <gram@xiexie.org>
@ -128,8 +128,8 @@ guint8* (*p_tvb_memdup)(tvbuff_t*, gint, gint);
const guint8* (*p_tvb_get_ptr)(tvbuff_t*, gint, gint);
gint (*p_tvb_find_guint8)(tvbuff_t*, gint, guint, guint8);
gint (*p_tvb_pbrk_guint8)(tvbuff_t *, gint, guint, guint8 *);
gint (*p_tvb_find_guint8)(tvbuff_t*, gint, gint, guint8);
gint (*p_tvb_pbrk_guint8)(tvbuff_t *, gint, gint, guint8 *);
gint (*p_tvb_strnlen)(tvbuff_t*, gint, guint);

View File

@ -1,7 +1,7 @@
/* plugin_table.h
* Table of exported addresses for Ethereal plugins.
*
* $Id: plugin_table.h,v 1.27 2001/10/29 21:56:50 guy Exp $
* $Id: plugin_table.h,v 1.28 2001/11/01 09:53:13 guy Exp $
*
* Ethereal - Network traffic analyzer
* Copyright 2000 by Gilbert Ramirez <gram@xiexie.org>
@ -133,8 +133,8 @@ typedef guint8* (*addr_tvb_memdup)(tvbuff_t*, gint, gint);
typedef const guint8* (*addr_tvb_get_ptr)(tvbuff_t*, gint, gint);
typedef gint (*addr_tvb_find_guint8)(tvbuff_t*, gint, guint, guint8);
typedef gint (*addr_tvb_pbrk_guint8)(tvbuff_t *, gint, guint, guint8 *);
typedef gint (*addr_tvb_find_guint8)(tvbuff_t*, gint, gint, guint8);
typedef gint (*addr_tvb_pbrk_guint8)(tvbuff_t *, gint, gint, guint8 *);
typedef gint (*addr_tvb_strnlen)(tvbuff_t*, gint, guint);