struct _dfilter_t: rename to epan_dfilter.

typedef (dfilter_t) not renamed.

svn path=/trunk/; revision=53765
This commit is contained in:
Jakub Zawadzki 2013-12-03 20:59:25 +00:00
parent 01e08ae582
commit 82f1fecf14
3 changed files with 3 additions and 3 deletions

View File

@ -56,7 +56,7 @@ typedef struct _column_info {
gchar **col_custom_field; /**< Custom column field */
gint *col_custom_occurrence;/**< Custom column field occurrence */
gint *col_custom_field_id; /**< Custom column field id */
struct _dfilter_t **col_custom_dfilter; /**< Compiled custom column field */
struct epan_dfilter **col_custom_dfilter; /**< Compiled custom column field */
const gchar **col_data; /**< Column data */
gchar **col_buf; /**< Buffer into which to copy data for column */
int *col_fence; /**< Stuff in column buffer before this index is immutable */

View File

@ -30,7 +30,7 @@
#include <stdio.h>
/* Passed back to user */
struct _dfilter_t {
struct epan_dfilter {
GPtrArray *insns;
GPtrArray *consts;
guint num_registers;

View File

@ -27,7 +27,7 @@
#include "ws_symbol_export.h"
/* Passed back to user */
typedef struct _dfilter_t dfilter_t;
typedef struct epan_dfilter dfilter_t;
#include <epan/proto.h>