Wireshark  4.3.0
The Wireshark network protocol analyzer
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 
16 typedef struct _dfilter_loc {
17  long col_start;
18  size_t col_len;
19 } df_loc_t;
20 
21 extern df_loc_t loc_empty;
22 
23 #define DFILTER_LOC_EMPTY loc_empty
24 
25 #endif
Definition: dfilter-loc.h:16