Wireshark  2.9.0-477-g68ec514b
The Wireshark network protocol analyzer
visual.h
1 /* visual.h
2  *
3  * File read write routines for Visual Networks .cap files.
4  * Copyright 2001, Tom Nisbet tnisbet@visualnetworks.com
5  *
6  * Based on the code that handles netmon files.
7  *
8  * Wiretap Library
9  * Copyright (c) 1998 by Gilbert Ramirez <gram@alumni.rice.edu>
10  *
11  * SPDX-License-Identifier: GPL-2.0-or-later
12  */
13 
14 #ifndef __VISUAL_H__
15 #define __VISUAL_H__
16 
17 #include <glib.h>
18 #include "wtap.h"
19 #include "ws_symbol_export.h"
20 
21 wtap_open_return_val visual_open(wtap *wth, int *err, gchar **err_info);
22 gboolean visual_dump_open(wtap_dumper *wdh, int *err);
23 int visual_dump_can_write_encap(int encap);
24 
25 #endif
Definition: wtap-int.h:34
Definition: wtap-int.h:86