If the capture child process exits unexpectedly, give more information
[obnox/wireshark/wip.git] / ptvcursor.h
1 /* ptvcursor.h
2  * 
3  * Proto Tree TVBuff cursor
4  * Gilbert Ramirez <gram@xiexie.org>
5  *
6  * $Id: ptvcursor.h,v 1.2 2000/08/11 13:34:25 deniel Exp $
7  *
8  * Ethereal - Network traffic analyzer
9  * By Gerald Combs <gerald@zing.org>
10  * Copyright 2000 Gerald Combs
11  * 
12  * This program is free software; you can redistribute it and/or
13  * modify it under the terms of the GNU General Public License
14  * as published by the Free Software Foundation; either version 2
15  * of the License, or (at your option) any later version.
16  * 
17  * This program is distributed in the hope that it will be useful,
18  * but WITHOUT ANY WARRANTY; without even the implied warranty of
19  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20  * GNU General Public License for more details.
21  * 
22  * You should have received a copy of the GNU General Public License
23  * along with this program; if not, write to the Free Software
24  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
25  */
26
27 #ifndef __PTVCURSOR_H__
28 #define __PTVCURSOR_H__
29
30 #ifdef HAVE_CONFIG_H
31 # include "config.h"
32 #endif
33
34 #include <glib.h>
35 #include "packet.h"
36
37 typedef struct ptvcursor ptvcursor_t;
38
39 #define PTVC_VARIABLE_LENGTH    -1
40
41 /* Allocates an initializes a ptvcursor_t with 3 variables:
42  *      proto_tree, tvbuff, and offset. */
43 ptvcursor_t*
44 ptvcursor_new(proto_tree*, tvbuff_t*, gint);
45
46 /* Gets data from tvbuff, adds it to proto_tree, increments offset,
47  * and returns proto_item* */
48 proto_item*
49 ptvcursor_add(ptvcursor_t*, int hf, gint length, gboolean endianness);
50
51 /* Frees memory for ptvcursor_t, but nothing deeper than that. */
52 void
53 ptvcursor_free(ptvcursor_t*);
54
55 #endif /* __PTVCURSOR_H__ */