Wireshark 4.7.0
The Wireshark network protocol analyzer
Loading...
Searching...
No Matches
dfilter-loc.h
Go to the documentation of this file.
1
11#ifndef DFILTER_LOC_H
12#define DFILTER_LOC_H
13
14#include <stddef.h>
15
19typedef struct _dfilter_loc {
20 long col_start;
21 size_t col_len;
23
24extern df_loc_t loc_empty;
25
26#define DFILTER_LOC_EMPTY loc_empty
27
28#endif
struct _dfilter_loc df_loc_t
Represents a location (column start and length) within a display filter string.
Represents a location (column start and length) within a display filter string.
Definition dfilter-loc.h:19
size_t col_len
Definition dfilter-loc.h:21
long col_start
Definition dfilter-loc.h:20