Wireshark  2.9.0-477-g68ec514b
The Wireshark network protocol analyzer
camins.h
1 /* camins.h
2  *
3  * File format support for Rabbit Labs CAM Inspector files
4  * Copyright (c) 2013 by Martin Kaiser <martin@kaiser.cx>
5  *
6  * Wireshark - Network traffic analyzer
7  * By Gerald Combs <gerald@wireshark.org>
8  * Copyright 1998 Gerald Combs
9  *
10  * SPDX-License-Identifier: GPL-2.0-or-later
11  */
12 
13 #ifndef _CAMINS_H
14 #define _CAMINS_H
15 
16 #include <glib.h>
17 #include <wiretap/wtap.h>
18 
19 wtap_open_return_val camins_open(wtap *wth, int *err, gchar **err_info _U_);
20 
21 #endif /* _CAMINS_H */
Definition: wtap-int.h:34