summaryrefslogtreecommitdiffstats
path: root/epan/dfilter/dfilter-loc.h
blob: adf663ef82885e1103c77eda1477a66d75cc5185 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/** @file
 *
 * Wireshark - Network traffic analyzer
 * By Gerald Combs <gerald@wireshark.org>
 * Copyright 2001 Gerald Combs
 *
 * SPDX-License-Identifier: GPL-2.0-or-later
 */

#ifndef DFILTER_LOC_H
#define DFILTER_LOC_H

#include <stddef.h>

typedef struct _dfilter_loc {
	long col_start;
	size_t col_len;
} df_loc_t;

extern df_loc_t loc_empty;

#define DFILTER_LOC_EMPTY loc_empty

#endif