MSWSP: VT_ERROR has 4 bytes
[wireshark-wip.git] / echld / echld-util.h
blob2d7e9de4d89f2c0e43c9865140688e86abca297b
1 /* echld-util.h
2 * utility for echld
4 * $Id$
6 * Wireshark - Network traffic analyzer
7 * By Gerald Combs <gerald@wireshark.org>
8 * Copyright 1998 Gerald Combs
10 * Copyright (c) 2013 by Luis Ontanon <luis@ontanon.org>
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.
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.
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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
26 #ifndef __ECHLD_UTIL
27 #define __ECHLD_UTIL
29 #ifdef __cplusplus
30 extern "C" {
31 #endif
33 typedef void (*echld_close_cb_t)(const char* error, void* data);
34 WS_DLL_PUBLIC echld_state_t echld_close(int child_id, echld_close_cb_t pcb, void* cb_data);
37 typedef void (*echld_ping_cb_t)(long usec, void* data);
38 WS_DLL_PUBLIC echld_state_t echld_ping(int child_id, echld_ping_cb_t pcb, void* cb_data);
40 typedef void (*echld_param_cb_t)(const char* param, const char* value, const char* error, void* data);
41 WS_DLL_PUBLIC echld_state_t echld_get_param(int chld_id, const char* param, echld_param_cb_t cb, void* cb_data);
42 WS_DLL_PUBLIC echld_state_t echld_set_param(int chld_id, const char* param, const char* value, echld_param_cb_t acb, void* cb_data);
44 typedef void (*echild_get_packet_summary_cb_t)(char* summary, void* data);
45 WS_DLL_PUBLIC echld_state_t echld_open_file(int child_id, const char* filename,echild_get_packet_summary_cb_t,void*);
49 WS_DLL_PUBLIC echld_state_t echld_open_interface(int child_id, const char* intf_name, const char* params);
50 WS_DLL_PUBLIC echld_state_t echld_start_capture(int child_id, echild_get_packet_summary_cb_t);
51 WS_DLL_PUBLIC echld_state_t echld_stop_capture(int child_id);
53 typedef void (*echild_get_packets_cb)(char* tree_text,void* data);
54 typedef void (*echild_get_buffer_cb)(char* buffer_text, void* data);
55 WS_DLL_PUBLIC echld_state_t echld_get_packets_range(int child_id, const char* range, echild_get_packets_cb, echild_get_buffer_cb, void* data);
57 #ifdef __cplusplus
59 #endif
61 #endif